environment.ts 600 B

12345678910111213141516
  1. // The build system defaults to the dev environment which uses `environment.ts`, but if you do
  2. // `ng build --env=prod` then `environment.prod.ts` will be used instead.
  3. // The list of which env maps to which file can be found in `.angular-cli.json`.
  4. // Reflect.metadata polyfill is only needed in the JIT/dev mode.
  5. //
  6. // In order to load these polyfills early enough (before app code), polyfill.ts imports this file to
  7. // to change the order in the final bundle.
  8. import 'core-js/features/reflect'
  9. export const environment = {
  10. production: true,
  11. hmr: false,
  12. apiUrl: '',
  13. originServerUrl: ''
  14. }