feat(vercel): add vercel config file for disabling gh-pages branch build

This commit is contained in:
andatoshiki 2023-03-02 15:17:34 +08:00
parent 672969a74a
commit 420e9bf281

13
vercel.json Normal file
View File

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