webpack基础——模块热替换

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

posted on 2022-06-15 02:10  In-6026  阅读(16)  评论(0编辑  收藏  举报

导航