Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 1x | import { LogLevel } from 'src/app/services/log/logLevel/logLevel'; import { IEnvironment } from './interface/ienvironment'; /** Development environment. */ export const environment: IEnvironment = { production: false, logLevel: LogLevel.All, compactLogDisplay: false, api: 'http://localhost:8080/', website: 'http://localhost:4200/', logWithDate: false, baseHref: '', // eslint-disable-next-line @typescript-eslint/no-var-requires appVersion: require('../../package.json').version + '-dev', isTesting: false, fullLoadingMessages: true, artificialMinLoadingTime: 750, artificialRandomLoadingTime: 4000, }; |