这篇文章主要介绍了Webpack dev server热加载失败怎么办,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
利用Webpack dev server作为热加载服务器时,出现以下错误:
XMLHttpRequest cannot load http://localhost:8080/dist/06854fc8988da94501a9.hot-update.json.
No 'Access-Control-Allow-Origin' header is present on the requested resource.
Origin 'http://localhost' is therefore not allowed access.
或者出现以下的警告信息:
dev-server.js:37 [HMR] Update failed: Error: Manifest request to http://localhost:8080/dist/06854fc8988da94501a9.hot-update.json timed out.
at XMLHttpRequest.request.onreadystatechange (http://localhost:8080/dist/main.js:38:22)
经过诊断,配置错误的地方在于webpack.config.js的publicPath,需要将绝对地址改为相对地址,如下:
output : {
filename : '[name].js',
// 不可配置为绝对路径,这是错误的配置
//publicPath: "http://localhost:8080/dist/",
// 这是正确的配置,
publicPath: "/dist/",
path : build,
// umd包含了对amd、commonjs、var等多种规范的支持
libraryTarget : 'var'
}
经过反复的测试,将webpack dev server的publicPath注入到其他域下,如果使用绝对地址配置,一定会出现上述错误。
需要特别注意的是,webpack dev server与webpack-hot-middleware刚好相反,webpack-hot-middleware必须使用绝对地址。
感谢你能够认真阅读完这篇文章,希望小编分享的“Webpack dev server热加载失败怎么办”这篇文章对大家有帮助,同时也希望大家多多支持编程网,关注编程网行业资讯频道,更多相关知识等着你来学习!