diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2022-12-11 21:18:31 +0100 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2022-12-11 21:18:31 +0100 |
| commit | 163e6a54b953c86664cef3551ce9d11c196b8a8b (patch) | |
| tree | f2b5a58cc840fcbd11752b142b4cfac348bf1c7f /code/app/src/configuration | |
| parent | 6561771c435f9d9bed1589b5ed13d17aee0b7873 (diff) | |
| download | greatoffice-163e6a54b953c86664cef3551ce9d11c196b8a8b.tar.xz greatoffice-163e6a54b953c86664cef3551ce9d11c196b8a8b.zip | |
refactor: Correct addresses
Diffstat (limited to 'code/app/src/configuration')
| -rw-r--r-- | code/app/src/configuration/index.ts | 6 |
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 { |
