You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
723 B
16 lines
723 B
// `.env.ts` is generated by the `npm run env` command
|
|
// `npm run env` exposes environment variables as JSON for any usage you might
|
|
// want, like displaying the version or getting extra config from your CI bot, etc.
|
|
// This is useful for granularity you might need beyond just the environment.
|
|
// Note that as usual, any environment variables you expose through it will end up in your
|
|
// bundle, and you should not use it for any sensitive information like passwords or keys.
|
|
import { env } from './.env';
|
|
|
|
export const environment = {
|
|
production: true,
|
|
hmr: false,
|
|
version: env.npm_package_version,
|
|
serverUrl: 'https://api.chucknorris.io',
|
|
defaultLanguage: 'en-US',
|
|
supportedLanguages: ['en-US', 'el-GR']
|
|
};
|
|
|