Vue开发环境配置跨域代理

76 阅读1分钟

在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'