如果使用了webpack-dev-server,大概率是要配置代理的
devServer: {
open: true,
proxy: {
//配置跨域
'/api': {
target: 'https://aip.baidubce.com',
// ws: true,
// secure: true,
changOrigin: true, //允许跨域
pathRewrite: {
'^/api': '' //请求的时候使用这个api就可以
}
}
}
}