From 2a6d4c6c2e63183b79de20f5ce7e8a2713ebaa5e Mon Sep 17 00:00:00 2001 From: Ajax Davis Date: Sat, 3 Jan 2026 14:11:19 +1000 Subject: [PATCH] fix: use turbo filter for Vercel build to exclude playground/storybook --- 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 345e8e1..0cc0ed0 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 install && pnpm --filter=@tpmjs/web... --filter=!@tpmjs/playground --filter=!@tpmjs/storybook build", + "buildCommand": "cd ../.. && pnpm install && turbo run build --filter=@tpmjs/web", "installCommand": "cd ../.. && pnpm install" }