标签:适用于 监视 server hot 变化 mod ons 开发环境 添加
devserver:{hot:true},既及时更新代码,样式(需配合loader)变化,自动重编译,只适用于开发环境。
入口文件中,添加监视:
+ if (module.hot) {
+ module.hot.accept(‘./print.js‘, function() {
+ console.log(‘Accepting the updated printMe module!‘);
+ printMe();
+ })
+ }
标签:适用于 监视 server hot 变化 mod ons 开发环境 添加
原文地址:https://www.cnblogs.com/spaceMM/p/10340923.html