本文介绍了Angular4实现热加载开发,分享给大家,具体如下:
安装插件
配置插件
{
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);