1 |
7f244939
|
Lukáš Vlček
|
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 |
3df63288
|
Lukáš Vlček
|
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;
|