15 lines
284 B
TOML
15 lines
284 B
TOML
[build]
|
|
command = "npm run build:client"
|
|
functions = "netlify/functions"
|
|
publish = "dist/spa"
|
|
|
|
|
|
[functions]
|
|
external_node_modules = ["express"]
|
|
node_bundler = "esbuild"
|
|
|
|
[[redirects]]
|
|
force = true
|
|
from = "/api/*"
|
|
status = 200
|
|
to = "/.netlify/functions/api/:splat"
|