vue-cli3设置代理无效
这是我设置代理的代码:
module.exports = {
devServer: {
open: true,
proxy: {
'/news': {
target: 'http://192.168.1.244/api',
ws: true,
changeOrigin: true
}
}
}
}
报错:
Failed to load http://192.168.1.244/api/news...: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:8080' is therefore not allowed access
写法不对。