我使用Webpack构建文件并以Wordpress为主题。
我通过Xampp运行的网站的地址为http://localhost/simple
如何构建webpack -watch以使用devServer刷新网址:
我的目录:
- scss
+ base.scss
- src
+ app.js
- public
+ bundle.js
+ style.css
我这样使用devServer,但是它不会自动刷新:
devServer: {
publicPath: "/",
contentBase: "./public",
hot: true
},
你能为此支持我吗?
非常感谢。
答案 0 :(得分:0)
这仅启用webpack的热模块更换功能。在webpack文档中,说明webpack.HotModuleReplacementPlugin是启用热模块更换所必需的。
devServer: {
hot: true
}