import env from '@beam-australia/react-env';
const DEFAULT_BASE_PATH = 'https://localhost:7241';
export function getApiBasePath() {
let e = env('BACKEND_URL');
if (!e) {
return DEFAULT_BASE_PATH;
} else {
return e;
}