Webpack 开发服务器引导两次
Webpack dev server bootstrapping twice
Webpack 开发服务器正在引导两次,原因不明。 (注意只有开发服务器有这个问题,如果我打包文件,一切运行正常)。
我看到这条线执行了两次:
// Load entry module and return exports
return hotCreateRequire(790)(__webpack_require__.s = 790);
我还可以在我的浏览器日志中看到此行两次:
[HMR] Waiting for update signal from WDS...
这些是使用过的版本
"webpack": "^2.1.0-beta.21"
"webpack-dev-server": "^2.1.0-beta.4",
我使用的是 HtmlWebpackPlugin,
使用
inject: false
有没有这个问题中所说的魔法:
Webpack 开发服务器正在引导两次,原因不明。 (注意只有开发服务器有这个问题,如果我打包文件,一切运行正常)。
我看到这条线执行了两次:
// Load entry module and return exports
return hotCreateRequire(790)(__webpack_require__.s = 790);
我还可以在我的浏览器日志中看到此行两次:
[HMR] Waiting for update signal from WDS...
这些是使用过的版本
"webpack": "^2.1.0-beta.21"
"webpack-dev-server": "^2.1.0-beta.4",
我使用的是 HtmlWebpackPlugin,
使用
inject: false
有没有这个问题中所说的魔法: