environment.ts 623 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/es6/reflect'
  9. import 'core-js/es7/reflect'
  10. export const environment = {
  11. production: false,
  12. hmr: false,
  13. apiUrl: 'http://localhost:9000'
  14. }