1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

fix: update vercel proxy paths (#2623)

* Updates vercel proxy paths to match new deployment
This commit is contained in:
Fredrik Strand Oseberg 2022-12-07 13:00:51 +01:00 committed by GitHub
parent fee95475bd
commit 8fed007fe1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,15 +2,15 @@
"rewrites": [
{
"source": "/api/:match*",
"destination": "https://unleash4.herokuapp.com/api/:match*"
"destination": "https://unleash.herokuapp.com/api/:match*"
},
{
"source": "/logout",
"destination": "https://unleash4.herokuapp.com/logout"
"destination": "https://unleash.herokuapp.com/logout"
},
{
"source": "/auth/:match*",
"destination": "https://unleash4.herokuapp.com/auth/:match*"
"destination": "https://unleash.herokuapp.com/auth/:match*"
},
{ "source": "/(.*)", "destination": "/index.html" }
]