Created
February 24, 2019 11:03
-
-
Save splincode/708a5a85ab59bf6b6bf0c01cca342ee2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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().catch(err => console.log(err)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment