lincenying / vue2-multiple-entry

vue2, vue2+vue-router, vue2+vue-router+vuex 混合多页配置实例
https://lincenying.github.io/vue2-multiple-entry/index
150 stars 55 forks source link

热重载功能似乎并不生效? #14

Closed byoungd closed 6 years ago

byoungd commented 6 years ago

会整体刷新而不是热重载,请问这个要如何解决呢?

控制台也没有提示 【HMR】 功能是启用的

lincenying commented 6 years ago

把 build/dev-server.js 里的

compiler.plugin('compilation', function(compilation) {
    compilation.plugin('html-webpack-plugin-after-emit', function(data, cb) {
        hotMiddleware.publish({
            action: 'reload'
        })
        cb()
    })
})

删除或者注释, 重新启动服务 删除这个后, 修改模板时, 则需要手动刷新

byoungd commented 6 years ago

可用,感谢!