vitesse/netlify.toml

19 lines
380 B
TOML
Raw Normal View History

[build.environment]
2021-11-28 01:30:57 +08:00
# bypass npm auto install
NPM_FLAGS = "--version"
NODE_VERSION = "16"
2020-08-10 02:43:04 +08:00
[build]
2020-12-14 16:01:49 +08:00
publish = "dist"
2020-12-14 15:41:05 +08:00
command = "npx pnpm i --store=node_modules/.pnpm-store && npx pnpm run build"
2020-08-10 02:43:04 +08:00
[[redirects]]
from = "/*"
to = "/index.html"
status = 200
[[headers]]
for = "/manifest.webmanifest"
[headers.values]
2021-11-28 01:30:57 +08:00
Content-Type = "application/manifest+json"