Files
5chan/vercel.json
T
plebeius bd07d37811 fix(vercel): serialize yarn install to prevent date-fns extraction failure
Add `--child-concurrency 1` and `--network-timeout 600000` to Vercel install command.
2026-02-26 13:15:15 +08:00

10 lines
248 B
JSON

{
"rewrites": [
{ "source": "/(.*)", "destination": "/index.html" }
],
"installCommand": "yarn install --network-timeout 600000 --child-concurrency 1",
"buildCommand": "yarn build",
"outputDirectory": "build",
"framework": "vite"
}