configure vercel to ignore commits that don't change the Docusaurus site

This commit is contained in:
Kenneth Bingham 2023-01-31 10:40:07 -05:00
parent 98a4f9384a
commit db72388229

10
website/vercel.json Normal file
View File

@ -0,0 +1,10 @@
{
"framework": "docusaurus-2",
"outputDirectory": "build",
"github": {
"silent": false
},
"cleanUrls": false,
"public": true,
"ignoreCommand": "git diff --quiet HEAD^ HEAD -- ./website/"
}