From fecf797f21d3ee6a11901f35259a5a9fbb93ff25 Mon Sep 17 00:00:00 2001 From: Cody Miller Date: Sun, 24 Mar 2024 18:15:22 -0400 Subject: [PATCH] fix: redirects --- apps/web/next.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/next.config.js b/apps/web/next.config.js index 7c450e2d..5465fba0 100644 --- a/apps/web/next.config.js +++ b/apps/web/next.config.js @@ -29,7 +29,7 @@ const nextConfig = { destination: process.env.NODE_ENV === "development" ? "http://localhost:8080/v1/oauth/discord" - : "https://imperial.hop.sh/v1/oauth/discord", + : "https://api.imperialb.in/v1/oauth/discord", permanent: true, }, { @@ -37,7 +37,7 @@ const nextConfig = { destination: process.env.NODE_ENV === "development" ? "http://localhost:8080/v1/oauth/github" - : "https://imperial.hop.sh/v1/oauth/github", + : "https://api.imperialb.in/v1/oauth/github", permanent: true, }, ];