Skip to content

Commit

Permalink
fix: Support vercel auth (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
fzavalia authored Feb 27, 2024
1 parent a49a49d commit ff03121
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"version": 2,
"name": "account",
"routes": [{ "handle": "filesystem" }, { "src": "/.*", "dest": "/index.html" }],
"github": {
"silent": true
},
Expand All @@ -10,5 +9,15 @@
"GEN_STATIC_LOCAL": "true",
"VITE_REACT_APP_DCL_DEFAULT_ENV": "dev"
}
}
},
"rewrites": [
{
"source": "/auth/:match*",
"destination": "https://decentraland.zone/auth/:match*"
},
{
"source": "/(.*)",
"destination": "/"
}
]
}

0 comments on commit ff03121

Please sign in to comment.