mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-23 00:41:36 +00:00
@
fix(vercel): install devDependencies during build Vercel sets NODE_ENV=production with custom installCommand, so devDeps (typescript, vite) were skipped. Build worked accidentally because @vercel/node hoisted typescript transitively; v5.7.15 no longer does, breaking `tsc -b`. Add --include=dev so the build picks up devDeps explicitly. @
This commit is contained in:
parent
9aacc2d9c2
commit
a61d2aec91
1 changed files with 1 additions and 1 deletions
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"installCommand": "cd ../gitnexus-shared && npm install && npm run build && cd ../gitnexus-web && npm install"
|
||||
"installCommand": "cd ../gitnexus-shared && npm install --include=dev && npm run build && cd ../gitnexus-web && npm install --include=dev"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue