community-dapp/vercel.json

23 lines
523 B
JSON
Raw Normal View History

2023-05-12 09:50:59 +00:00
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"git": {
"deploymentEnabled": {
"main": false,
"master": false
}
},
"github": {
"silent": false,
"autoJobCancelation": true
},
"ignoreCommand": "git diff --quiet HEAD^ HEAD vercel.json ./package.json ./packages/contracts/package.json ./packages/contracts/contracts ./packages/DApp",
"rewrites": [
{
"source": "/(.*)",
"destination": "/index.html"
}
],
"installCommand": "yarn install --frozen-lockfile",
"buildCommand": "yarn build"
2023-05-12 09:50:59 +00:00
}