aboutsummaryrefslogtreecommitdiffstats
path: root/code/app/src/configuration
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2022-12-11 21:18:31 +0100
committerivarlovlie <git@ivarlovlie.no>2022-12-11 21:18:31 +0100
commit163e6a54b953c86664cef3551ce9d11c196b8a8b (patch)
treef2b5a58cc840fcbd11752b142b4cfac348bf1c7f /code/app/src/configuration
parent6561771c435f9d9bed1589b5ed13d17aee0b7873 (diff)
downloadgreatoffice-163e6a54b953c86664cef3551ce9d11c196b8a8b.tar.xz
greatoffice-163e6a54b953c86664cef3551ce9d11c196b8a8b.zip
refactor: Correct addresses
Diffstat (limited to 'code/app/src/configuration')
-rw-r--r--code/app/src/configuration/index.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/code/app/src/configuration/index.ts b/code/app/src/configuration/index.ts
index a0ec66d..8e4334f 100644
--- a/code/app/src/configuration/index.ts
+++ b/code/app/src/configuration/index.ts
@@ -1,6 +1,6 @@
-export const BASE_DOMAIN = "stage.greatoffice.app";
-export const DEV_BASE_DOMAIN = "http://localhost";
-export const API_ADDRESS = "https://api." + BASE_DOMAIN;
+export const APP_ADDRESS = "https://stage.greatoffice.app";
+export const API_ADDRESS = "https://stage-api.greatoffice.app";
+export const DEV_APP_ADDRESS = "http://localhost";
export const DEV_API_ADDRESS = "http://localhost:5000";
export function api_base(path: string = "", explicitVersion = 1): string {