我的文件结构是:
sales, marketing
IT Support, IT Head
我的webpack.config.js看起来像:
dist
css
style.css
index.html
js
bundle.js
src
css
style.css
index.html
js
main.js
node_modules
webpack.config.js
package.json
我跑:
module.exports = {
entry: './src/js/main.js',
output: {
path: __dirname,
filename: './dist/js/bundle.js'
},
module: {
loaders: [
{
test: /\.js$/,
exclude: /(node_modules)/,
loader: 'babel',
query: {
presets: ['es2015']
}
},
{
test: /\.vue$/,
loader: 'vue'
}
]
}
};
它构建并且看起来像是在工作。 localhost:8080显示预期的结果,但热重载不起作用。当我更改文件时,我可以在终端中看到正在进行重建,但浏览器中没有任何反应。我在配置中遗漏了什么吗?
答案 0 :(得分:21)
对我有用的是在我的<script src="bundle.js">
文件中写<script src="dist/bundle.js">
而不是index.html
。
// index.html
<script src="bundle.js"></script> // works
<script src="dist/bundle.js"></script> // doesn't work!
如果您使用dist/bundle.js
构建输出文件,那么保持webpack
作为输出文件可以正常工作。但是当使用webpack-dev-server
时,文件系统中已经存在的静态文件将继续提供,而不是最新的热替换。当webpack-dev-server
在html文件中看到dist/bundle.js
并且没有热替换它时,似乎webpack.config.js
会感到困惑,即使Sub GenerateWorksheets()
Dim a as long, b as long, nams as variant
with workSheets("Sheet1")
nams = .Range(.cells(2, "A"), .cells(.rows.count, "B").end(xlup)).value2
end with
For a =lbound(nams, 1) to ubound(nams, 1)
For b =1 to nams(a, 2)
with workSheets.Add( after:=workSheets(workSheets.Count))
.name = nams(a, 1) & "_" & b
end with
next b
Next a
End Sub
配置为该路径。
答案 1 :(得分:18)
使用webpack-dev-server
时,它会在内部构建所有文件,不会将它们吐出到输出路径中。单独运行webpack
,不使用dev服务器,将实际编译到磁盘。开发服务器在内存中执行所有操作,从而大大加快了重新编译的速度。
要修复热重新加载问题,请将内容库设置为源目录并启用inline-mode
像这样:
webpack-dev-server --content-base src --hot --inline
答案 2 :(得分:1)
- inline --hot对我来说不是一个问题
如果你正在使用redux,可以试试这个。
由于某些随机原因,redux-devtools
不允许热重载。尝试从根组件和redux compose
config。
注意:在商店配置中使用带有此配置的redux devtool浏览器扩展程序:window.devToolsExtension ? window.devToolsExtension() : f => f
或尝试热重装3: 例如:https://github.com/gaearon/redux-devtools/commit/64f58b7010a1b2a71ad16716eb37ac1031f93915
答案 3 :(得分:1)
Webpack热重装也停止了我的工作。我的解决方案是删除node_modules
文件夹并全新安装所有依赖项。
只需在终端中打开node_modules
的父文件夹,然后运行npm install
答案 4 :(得分:1)
唯一对我有用的是在“devServer”(在“webpack.config.js”上)的配置中应用“hotOnly”,如下所示:
devServer: {
hotOnly: true,
},
重新加载“Webpack Dev Server”后,“Hot Reload”至少在保存 CSS 或 JS 文件中的任何更改后起作用。
答案 5 :(得分:0)
试试这个:
在package.json
文件中,删除脚本对象下包含"test" "echo \"Error: no test specified\" && exit 1"
的行,并将其替换为:
...
"scripts": {
"start": "webpack-dev-server --hot"
},
...
然后重新启动项目,只需使用npm start
。
当我遇到这个问题时,这对我有用。
编辑:您可以分享您的package.json
文件吗?
尝试将此添加到webpack.config.js
devServer: {
inline: true,
port: 3000,
hot: true
},
答案 6 :(得分:0)
检查控制台日志是否有错误,然后将cors添加到webpack dev服务器文件
No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin react hot reload
理想情况下,在您的开发服务器js
中添加以下条目headers: { "Access-Control-Allow-Origin": "*" },
答案 7 :(得分:0)
100%工作解决方案
您只需遵循3个步骤,即可按预期进行热重载
您的配置应如下所示-
output: { path: __dirname, publicPath:"/dist/js/", filename: './dist/js/bundle.js' }
devServer:{ contentBase:"/src/", inline:true, stats:"errors-only" }
请注意, contentBase 应该指向放置包含脚本标记的index.html文件的路径,在这种情况下,该文件将是“ / src /”
<script src="http://localhost:portnumber + value in publicPath + bundle.js"></script>
在您的情况下,它看起来像这样-
<script src="http://localhost:8080/js/dist/bundle.js" type="text/javascript"></script>
最后要记住webpack-dev-server doesn't compile your js file or make build or watch on your js
文件,它将所有内容分配到内存中以观看必须运行的js文件
webpack --watch
在单独的窗口中
答案 8 :(得分:0)
此页面上的所有选项都不适合我。将devServer部分更改为:
devServer: {
port: 8080,
contentBase: ['./src', './public'], // both src and output dirs
inline: true,
hot: true
},
有效。
答案 9 :(得分:0)
我增加了可以观看的文件更改的最大数量,这对我有用。我想对我来说问题是文件太多。
echo fs.inotify.max_user_watches=1999999 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
答案 10 :(得分:0)
您可以尝试将其添加到您的配置中:
module.exports = {
...
devServer: {
contentBase: './dist/', // Since your index.html is in the "dist" dir
open: true, // Automatically open the browser
hot: true, // Automatically refresh the page whenever bundle.js changes
// (You will have to refresh manually if other files change)
},
...
};
然后运行(无选项):
webpack-dev-server
答案 11 :(得分:0)
使用以上设置,在使用webpack-dev-server
进行静态页面构建时,我将bundle js或配置为html页面的任何js文件添加到html页面。这样,在进行任何更改后,我都会在我的静态页面上刷新。