aswi20220x00-gitlab/webapp/constants.ts @ 64641e81
1 |
import env from '@beam-australia/react-env'; |
---|---|
2 |
|
3 |
const DEFAULT_BASE_PATH = 'https://localhost:7241'; |
4 |
|
5 |
export function getApiBasePath() { |
6 |
let e = env('BACKEND_URL'); |
7 |
|
8 |
if (!e) { |
9 |
return DEFAULT_BASE_PATH; |
10 |
} else { |
11 |
return e; |
12 |
}
|
13 |
}
|
14 |
export const COLOR_GENERAL = 'gray'; |
15 |
export const COLOR_SUCCESS = 'darkgreen'; |
16 |
export const COLOR_WARNING = 'darkorange'; |
17 |
export const COLOR_ERROR = 'indianred'; |
18 |
|
19 |
export const BORDER_RADIUS = 4; |