From a5526222ad517084f80d7fbdc4da2d646250d44d Mon Sep 17 00:00:00 2001 From: Ajax Davis Date: Fri, 28 Nov 2025 21:15:18 +1000 Subject: [PATCH] fix(vercel): configure Turborepo monorepo build for apps/web MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change build filter from @tpmjs/web to @tpmjs/web... - The ... suffix tells pnpm to build all dependencies first - This fixes 'Module not found' errors for @tpmjs/env, @tpmjs/types, @tpmjs/ui - Ensures workspace packages are built before web app tries to import them 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- apps/web/vercel.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/vercel.json b/apps/web/vercel.json index f56dba2..4b04a84 100644 --- a/apps/web/vercel.json +++ b/apps/web/vercel.json @@ -1,5 +1,5 @@ { "$schema": "https://openapi.vercel.sh/vercel.json", - "buildCommand": "cd ../.. && pnpm --filter=@tpmjs/web build", + "buildCommand": "cd ../.. && pnpm install && pnpm --filter=@tpmjs/web... build", "installCommand": "pnpm install" }