Skip to content

Instantly share code, notes, and snippets.

@beeman
Last active May 25, 2017 22:28
Show Gist options
  • Save beeman/80b78c295f4a4b3e2118c6237ed68e5e to your computer and use it in GitHub Desktop.
Save beeman/80b78c295f4a4b3e2118c6237ed68e5e to your computer and use it in GitHub Desktop.
Tutorial: Enable HRM in angular-cli apps: https://medium.com/@beeman/1b0d13b80130
import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.module';
import { environment } from './environments/environment';
import { hmrBootstrap } from './hmr';
if (environment.production) {
enableProdMode();
}
const bootstrap = () => platformBrowserDynamic().bootstrapModule(AppModule);
if (environment.hmr) {
if (module[ 'hot' ]) {
hmrBootstrap(module, bootstrap);
} else {
console.error('HMR is not enabled for webpack-dev-server!');
console.log('Are you using the --hmr flag for ng serve?');
}
} else {
bootstrap();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment