fix: use pnpm instead of yarn manager in production for vercel builds

This commit is contained in:
Anda Toshiki 2023-05-22 11:48:41 +08:00
parent 51d5fc7f0c
commit 51c236a908

View File

@ -1,13 +1,14 @@
{
"installCommand": "yarn install --frozen-lockfile",
"buildCommand": "yarn docs:build",
"devCommand": "yarn docs:dev",
"cleanUrls": true,
"framework": "vite",
"git": {
"deploymentEnabled": {
"master": true,
"gh-pages": false
"installCommand": "pnpm install --frozen-lockfile",
"buildCommand": "pnpm docs:build",
"devCommand": "pnpm docs:dev",
"cleanUrls": true,
"framework": "vite",
"git": {
"deploymentEnabled": {
"master": true,
"gh-pages": false
}
}
}
}