From 8fed007fe100cfaf0899d20417f421627889ac66 Mon Sep 17 00:00:00 2001 From: Fredrik Strand Oseberg Date: Wed, 7 Dec 2022 13:00:51 +0100 Subject: [PATCH] fix: update vercel proxy paths (#2623) * Updates vercel proxy paths to match new deployment --- frontend/vercel.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/vercel.json b/frontend/vercel.json index 8d6957eeb2..59f1a8a539 100644 --- a/frontend/vercel.json +++ b/frontend/vercel.json @@ -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" } ]