From 7030e3807a4e83323aa66d0b1168802b719deee2 Mon Sep 17 00:00:00 2001 From: andatoshiki Date: Sun, 15 Sep 2024 09:36:18 -0700 Subject: [PATCH] fix(vercel): add production installation command override with `--no-frozen-lockfile` flag to ignore exisiting lock file for preventing installation error that causes mismatched package config & lockfile config on vercel --- vercel.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vercel.json b/vercel.json index fbe29285..3279dcac 100644 --- a/vercel.json +++ b/vercel.json @@ -1,5 +1,5 @@ { - "installCommand": "pnpm i", + "installCommand": "pnpm i --no-frozen-lockfile", "buildCommand": "pnpm build", "devCommand": "pnpm dev", "cleanUrls": true,