From 46657e9a55248556c1f648f0293374f2fc2c746d Mon Sep 17 00:00:00 2001 From: v0 Date: Sat, 12 Sep 2026 17:43:51 +0000 Subject: [PATCH] Fix Vercel Next.js dependency detection --- vercel.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vercel.json b/vercel.json index 75009454..84a17e70 100644 --- a/vercel.json +++ b/vercel.json @@ -1,5 +1,5 @@ { "framework": "nextjs", - "installCommand": "corepack pnpm@10.30.0 --dir frontend install --frozen-lockfile", - "buildCommand": "pnpm build" + "installCommand": "corepack pnpm@10.30.0 install --frozen-lockfile && corepack pnpm@10.30.0 --dir frontend install --frozen-lockfile", + "buildCommand": "corepack pnpm@10.30.0 --dir frontend build" }