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