From 366c1ca147d6d24e2e743f73918a430971848174 Mon Sep 17 00:00:00 2001 From: Ajax Davis Date: Wed, 14 Jan 2026 04:35:24 +1000 Subject: [PATCH] fix: use pnpm -w flag for workspace root build command --- apps/web/vercel.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/vercel.json b/apps/web/vercel.json index c97307c..2f0a615 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 run build:web", - "installCommand": "cd ../.. && pnpm install" + "buildCommand": "cd ../.. && pnpm -w run build:web", + "installCommand": "pnpm install" }