1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-14 20:06:41 +02:00
unleash.unleash/frontend/vercel.json
Fredrik Strand Oseberg 8fed007fe1
fix: update vercel proxy paths (#2623)
* Updates vercel proxy paths to match new deployment
2022-12-07 13:00:51 +01:00

18 lines
402 B
JSON

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