This commit is contained in:
Jack Forgash 2022-10-06 21:08:44 -06:00
parent 29f9e009b7
commit 06f1b69c17
2 changed files with 19 additions and 0 deletions

5
vercel.json Normal file
View File

@ -0,0 +1,5 @@
{
"github": {
"silent": true
}
}

14
vercel.sh Normal file
View File

@ -0,0 +1,14 @@
#!/bin/bash
echo "VERCEL_ENV: $VERCEL_ENV"
if [[ "$VERCEL_ENV" == "production" ]] ; then
# Proceed with the build
echo "✅ - Build can proceed"
exit 1;
else
# Don't build
echo "🛑 - Build cancelled"
exit 0;
fi