fix(build): simplify Vercel build command
- Remove --webpack flag (incompatible with Turbo) - Remove functions config (not working as expected) - Use direct pnpm build command 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
8281f8fb5b
commit
065196df6b
1 changed files with 2 additions and 7 deletions
|
|
@ -1,10 +1,5 @@
|
|||
{
|
||||
"$schema": "https://openapi.vercel.sh/vercel.json",
|
||||
"buildCommand": "cd ../.. && turbo build --filter=@tpmjs/web -- --webpack",
|
||||
"installCommand": "pnpm install",
|
||||
"functions": {
|
||||
"app/api/**/*.ts": {
|
||||
"maxDuration": 60
|
||||
}
|
||||
}
|
||||
"buildCommand": "cd ../.. && pnpm --filter=@tpmjs/web build",
|
||||
"installCommand": "pnpm install"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue