13 lines
330 B
TypeScript
13 lines
330 B
TypeScript
import {NgxLoggerLevel} from 'ngx-logger';
|
|
|
|
export const environment = {
|
|
title: 'Bsp 4 Gruppe 4',
|
|
openid_endpoint: 'https://waecm-sso.inso.tuwien.ac.at/auth/realms/waecm/protocol/openid-connect',
|
|
production: true,
|
|
location: window.location.hostname,
|
|
port_be: 8000,
|
|
port_fe: 4200,
|
|
log_level: NgxLoggerLevel.WARN,
|
|
};
|
|
|