webpack dev server配置反向代理的时候总是报错404,请问怎么解决?
错误日志:GET http://localhost:8080/mzabris... 404 (Not Found)
配置文件:
devServer: {
inline: true,
noInfo: true,
port: 8080,
proxy: {
'/mzabriskie': {
target: 'https://github.com',
changeOrigin: true
}
}
},
接口代码:
this.$http.get('/mzabriskie/axios').then((response) => {
console.log(response)
}).catch((error) => {
console.log(error)
})
配置好像没毛病,主要是好像写错文件了....
你代码完全没问题……配置修改后重启了webpack了吗
加一行
然后重启webpack