Projekt

Obecné

Profil

Stáhnout (449 Bajtů) Statistiky
| Větev: | Tag: | Revize:
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;
(6-6/13)