mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-10 12:35:07 +00:00
3deba51322
Increase the Fuse version number Fixed the HMR serve ('npm run start-hmr' and 'npm run start-hmr-sourcemaps')
31 lines
716 B
TypeScript
31 lines
716 B
TypeScript
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));
|
|
}
|