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:
Ajax Davis 2025-11-28 20:48:51 +10:00
parent 8281f8fb5b
commit 065196df6b

View file

@ -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"
}