2

套餐:

"node": "14.14.0,
"npm": "6.14.8",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0",

我试图使用https://webpack.js.org/configuration/dev-server/#devserverlivereload中的示例而没有效果...

我的webpack.config.js

module.exports = {
  ...
  devServer: {
    historyApiFallback: {
      rewrites: [
        {
          from: /.*/,
          to: '/index.html',
        },
      ],
    },
    contentBase: resolve('public'),
    compress: true,
    port: 8080,
    hot: false,
    liveReload: false,
  },
  ...
}

如果我跑,webpack serve --config webpack.config.js我会得到

[WDS] Live Reloading enabled.                               index.js:52

在浏览器控制台和应用程序中的任何观察文件更改后仍会重新加载页面。

我想禁用 liveReload 标志来关闭 webpack 服务器的实时重新加载。

4

0 回答 0