我从this page安装并配置了vue项目“ conduit”。我的目标是将特定的图像请求重写到特定的主机。
它最终显示错误:
Proxy error: Could not proxy request /very_special_image_123456.jpg from localhost:8080 to https://destinationurl.com/ (ENOTFOUND).
在vue应用程序中,我创建了一个名为“ vue.config.js”的webpack配置文件,并填充了内容:
module.exports = {
devServer: {
proxy: {
"^/very_special_image": {
target: "https://destinationurl.com/",
changeOrigin: true,
ws: true
}
}
}
};
示例: http://localhost:8080/very_special_image_123456.jpg
应重写为: https://destinationurl.com/very_special_image_123456.jpg
答案 0 :(得分:0)
我自己解决了...
问题是在mashine上我的目标网络未知,因此出现了Proxy error
...