Angular 4 开启热加载开发旅程

前端之家收集整理的这篇文章主要介绍了Angular 4 开启热加载开发旅程前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

安装插件

npm install @angularclass/hmr -D

配置插件

// main.ts
if (environment.production) {
  enableProdMode();
}else {
  if (module.hot) {
    module.hot.accept();
    module.hot.dispose(() => {
      let _styles = document.head.querySelectorAll('style');
      let styles = Array.prototype.slice.call(_styles);
      styles
        .filter((style: any) => style.innerText.indexOf('_ng') !== -1)
        .map((el: any) => document.head.removeChild(el));
    })
  }
}

platformBrowserDynamic().bootstrapModule(AppModule);

配置Typescript

// typings.d.ts
declare var module: NodeModule;
interface NodeModule {
  hot: any;
}

启用热加载

// package.json
ng serve -H d.io --port 3000 --hmr --proxy-config=./proxy.json
原文链接:https://www.f2er.com/angularjs/146222.html

猜你在找的Angularjs相关文章