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'; /** Production environment. */ export const environment: IEnvironment = { production: true, logLevel: LogLevel.Warn, compactLogDisplay: true, api: 'https://server.sylvainjanet.fr/app/', website: 'https://sylvainjanet.fr/', logWithDate: true, baseHref: '', // eslint-disable-next-line @typescript-eslint/no-var-requires appVersion: require('../../package.json').version, isTesting: false, fullLoadingMessages: false, artificialMinLoadingTime: 0, artificialRandomLoadingTime: 0, }; |