一、Api请求前缀 baseUrl: “http://127.0.0.1:9933/”
二、webpack.config.js配置
module.exports = (env, args) => {
const config = {
...,
devServer: {
port: 9933,
host:'127.0.0.1',
// hot: true
proxy:{
'/':{
target: 'http://192.168.43.58:13030/', // 代理跨域目标接口,这里是后端的地址
changeOrigin: false//域名跨域需要为true
}
}
}
};
return config;
};