From 027638dfb9614542e9774ebf07b93293f34cbeac Mon Sep 17 00:00:00 2001 From: ajaysi Date: Fri, 3 Apr 2026 18:18:54 +0530 Subject: [PATCH] fix: use legacy-peer-deps in Vercel build --- frontend/vercel.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/vercel.json b/frontend/vercel.json index 69c94733..94f37f6c 100644 --- a/frontend/vercel.json +++ b/frontend/vercel.json @@ -1,7 +1,8 @@ { "version": 2, - "buildCommand": "npm run build", + "buildCommand": "npm install --legacy-peer-deps && npm run build", "outputDirectory": "build", + "installCommand": "npm install --legacy-peer-deps", "routes": [ { "src": "/(.*)",