first commit

This commit is contained in:
2024-05-16 16:05:41 +02:00
commit adf8283ae0
197 changed files with 26666 additions and 0 deletions
@@ -0,0 +1,7 @@
import { NgxLoggerLevel } from 'ngx-logger';
export const environment = {
production: true,
logLevel: NgxLoggerLevel.OFF,
serverLogLevel: NgxLoggerLevel.ERROR
};
+12
View File
@@ -0,0 +1,12 @@
import { NgxLoggerLevel } from 'ngx-logger';
// The file contents for the current environment will overwrite these during build.
// The build system defaults to the dev environment which uses `environment.ts`, but if you do
// `ng build --env=prod` then `environment.prod.ts` will be used instead.
// The list of which env maps to which file can be found in `.angular-cli.json`.
export const environment = {
production: false,
logLevel: NgxLoggerLevel.TRACE,
serverLogLevel: NgxLoggerLevel.OFF
};