在根目录下创建vue.config.js
// vue.config.js
module.exports = {
publicPath: '/',
devServer: {
proxy: {
'/api': {
target: 'https://aip.baidubce.com', //对应自己的接口
changeOrigin: true,
secure: false,
ws: true,
pathRewrite: {
'^/api': ''
}
}
}
}
}