其他分享
首页 > 其他分享> > webpack基础——模块热替换

webpack基础——模块热替换

作者:互联网

module.exports = {
  mode: 'development',
  devtool: 'eval',
  devServer: {
    static: './dist',
    hot: true,       //就是这个hot,它默认是true打开的,但是好像也没什么效果(暂时没试出来)
    proxy: {
      '/abc': {
        target: 'http://baicu.com/',
        changeOrigin: true
      }
    }
  },
..........

标签:dist,changeOrigin,devtool,hot,module,webpack,模块,true,替换
来源: https://www.cnblogs.com/Lilc20201212/p/16377002.html