fix: add flags options to not install deps using lockfiles

This commit is contained in:
Anda Toshiki 2023-05-22 19:45:42 +08:00
parent 788c1bffb4
commit 0e7892e1f2

View File

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