在vue.config.js中进行配置即可
module.exports = {
publicPath:'./',
devServer: {
proxy: {
'/api': {
target: 'http://xxxxx', //目标接口
changOrigin: true,
pathRewrite: {
'^/api': ''
}
},
}
}
}
Axios相关配置 在main.js中
import axios from 'axios'
Vue.prototype.$axios = axios
axios.defaults.baseURL = '/api'