11 lines
295 B
TypeScript
11 lines
295 B
TypeScript
import {NgxLoggerLevel} from 'ngx-logger';
|
|
|
|
export const environment = {
|
|
title: 'Bsp 4 Gruppe 4',
|
|
production: true,
|
|
location: window.location.hostname,
|
|
port: 8000,
|
|
ws_url_root: 'ws://' + window.location.hostname + ':' + window.location.port + '/',
|
|
log_level: NgxLoggerLevel.WARN,
|
|
};
|