From edae0ea939857cf98382f5dcede6810ac0e9c312 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=8E=E8=97=A4=E3=80=80=E5=BF=AB=E6=96=97?= Date: Wed, 8 Mar 2023 10:52:30 +0900 Subject: [PATCH] =?UTF-8?q?develop=E7=94=A8=E3=81=AE=E7=92=B0=E5=A2=83?= =?UTF-8?q?=E5=A4=89=E6=95=B0=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dictation_client/.env | 2 +- dictation_client/src/features/auth/utils.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dictation_client/.env b/dictation_client/.env index 485b347..0ee1b75 100644 --- a/dictation_client/.env +++ b/dictation_client/.env @@ -1,4 +1,4 @@ -VITE_STAGE=local +VITE_STAGE=develop VITE_B2C_CLIENTID=5eb34cba-84b6-46f9-a0ea-bc5c41157d63 VITE_B2C_AUTHORITY=https://adb2codmsdev.b2clogin.com/adb2codmsdev.onmicrosoft.com/b2c_1_signin_dev VITE_B2C_KNOWNAUTHORITIES=adb2codmsdev.b2clogin.com diff --git a/dictation_client/src/features/auth/utils.ts b/dictation_client/src/features/auth/utils.ts index 8e0e16d..090c796 100644 --- a/dictation_client/src/features/auth/utils.ts +++ b/dictation_client/src/features/auth/utils.ts @@ -44,7 +44,7 @@ export const removeRefreshToken = (): void => { export const initialConfig = (): ConfigurationParameters => { const config: ConfigurationParameters = {}; if (import.meta.env.VITE_STAGE === "local") { - config.basePath = "http://localhost"; + config.basePath = "http://localhost:8081"; } else { config.basePath = window.location.origin; }