From 2b35f86a2390ab2aa0fd53500443856fc808419a Mon Sep 17 00:00:00 2001 From: andatoshiki Date: Mon, 12 Jun 2023 00:43:20 +0800 Subject: [PATCH] fix: update installation command to default pnpm install for all deps in vercel build config --- vercel.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vercel.json b/vercel.json index b7116e75..1c71a719 100644 --- a/vercel.json +++ b/vercel.json @@ -1,5 +1,5 @@ { - "installCommand": "pnpm install --no-frozen-lockfile", + "installCommand": "pnpm i", "buildCommand": "pnpm docs:build", "devCommand": "pnpm docs:dev", "cleanUrls": true,