diff --git a/dictation_client/src/features/auth/utils.ts b/dictation_client/src/features/auth/utils.ts index 090c796..e4ea256 100644 --- a/dictation_client/src/features/auth/utils.ts +++ b/dictation_client/src/features/auth/utils.ts @@ -46,7 +46,7 @@ export const initialConfig = (): ConfigurationParameters => { if (import.meta.env.VITE_STAGE === "local") { config.basePath = "http://localhost:8081"; } else { - config.basePath = window.location.origin; + config.basePath = `${window.location.origin}/dictaion/api`; } return config;