module.exports = {
...
devServer: {
proxy: {
"/": {
target: "http://www.example.org",
},
changeOrigin: true
}
}
...
}
不应该localhost:8080
显示http://www.example.org
内容吗?
因为我得到了404页面...(对于其他网站也是如此,我得到了无法创建,甚至apache安装页面!)
答案 0 :(得分:0)
这是正确的配置
module.exports = {
...
devServer: {
proxy: {
"/": {
target: "http://www.example.org",
changeOrigin: true
},
}
}
...
}