mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
24 lines
511 B
TOML
24 lines
511 B
TOML
[build.environment]
|
|
NODE_VERSION = "16"
|
|
NPM_FLAGS = "--version" # prevent Netlify npm install
|
|
|
|
[build]
|
|
publish = ".vitepress/dist"
|
|
command = "npx pnpm i --store=node_modules/.pnpm-store --frozen-lockfile && npx pnpm build"
|
|
|
|
[dev]
|
|
command = "pnpm run dev"
|
|
targetPort = 5173
|
|
autoLaunch = false
|
|
framework = "#custom"
|
|
|
|
[[redirects]]
|
|
from = "/"
|
|
to = "/getting-started/introduction"
|
|
status = 301
|
|
force = true
|
|
|
|
[[redirects]]
|
|
from = "/api/*"
|
|
to = "/.netlify/functions/:splat"
|
|
status = 200 |