关于Webpack dev server热加载失败的解决方法
程序员文章站
2022-04-21 09:21:26
利用webpack dev server作为热加载服务器时,出现以下错误:
xmlhttprequest cannot load http://localhost...
利用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热加载失败的解决方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: 美研究机构CEO:大数据科学需要SDN
下一篇: Node.js创建Web、TCP服务器