vue配置代理跨域

/vue.config.js

module.exports = {
  devServer: {
    proxy: {
      //配置跨域
      "/api": {
        target: "http://127.0.0.1:7001", 
        ws: true,
        changOrigin: true, //允许跨域
        // pathRewrite: {
        //   "^/api": "/api", //这里理解成用'/api'代替target里面的地址,比如我要用'https://www.baidu.com/user/add',直接写'/api/user/add'即可
        // },
      },
    },
  },
};

posted @ 2021-09-30 10:56  丁同亚的博客  阅读(67)  评论(0编辑  收藏  举报