From 065196df6b2880daa0806ee811b96e3e5855f0cf Mon Sep 17 00:00:00 2001 From: Ajax Davis Date: Fri, 28 Nov 2025 20:48:51 +1000 Subject: [PATCH] fix(build): simplify Vercel build command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- apps/web/vercel.json | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/apps/web/vercel.json b/apps/web/vercel.json index c03e0c3..f56dba2 100644 --- a/apps/web/vercel.json +++ b/apps/web/vercel.json @@ -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" }