diff --git a/src/App.tsx b/src/App.tsx index 9b9e420..87756fd 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -13,14 +13,17 @@ const App = () => { }, }); - console.log("Redirect URI: ", window.location.origin); + const isProduction = process.env.NODE_ENV === "production"; + const redirectUri = isProduction + ? `${window.location.origin}/bukie` + : window.location.origin; return (