Skip to content

Commit

Permalink
Add vercel config to ignore gh-pages (MystenLabs#8590)
Browse files Browse the repository at this point in the history
This removes the deployments from `gh-pages` so that we have less build
failures in the dash.
  • Loading branch information
Jordan-Mysten authored Feb 23, 2023
1 parent 31e2f7a commit 59c7087
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
5 changes: 5 additions & 0 deletions apps/explorer/vercel.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"rewrites": [{ "source": "/(.*)", "destination": "/" }],
"git": {
"deploymentEnabled": {
"gh-pages": false
}
},
"headers": [
{
"source": "/assets/(.*)",
Expand Down
5 changes: 5 additions & 0 deletions dapps/frenemies/vercel.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"rewrites": [{ "source": "/(.*)", "destination": "/" }],
"git": {
"deploymentEnabled": {
"gh-pages": false
}
},
"headers": [
{
"source": "/assets/(.*)",
Expand Down
8 changes: 8 additions & 0 deletions sdk/wallet-adapter/example/vercel.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"git": {
"deploymentEnabled": {
"gh-pages": false
}
}
}

0 comments on commit 59c7087

Please sign in to comment.