fix(vercel): serialize yarn install to prevent date-fns extraction failure

Add `--child-concurrency 1` and `--network-timeout 600000` to Vercel install command.
This commit is contained in:
plebeius
2026-02-26 13:15:15 +08:00
parent 564321531f
commit bd07d37811
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -175,4 +175,5 @@ scripts/upload-selectors-smoke-report.json
scripts/upload-selectors-smoke-snapshots/
# Android build artifacts
android/app/build/
android/app/build/
.vercel
+1
View File
@@ -2,6 +2,7 @@
"rewrites": [
{ "source": "/(.*)", "destination": "/index.html" }
],
"installCommand": "yarn install --network-timeout 600000 --child-concurrency 1",
"buildCommand": "yarn build",
"outputDirectory": "build",
"framework": "vite"