码迷,mamicode.com
首页 > 移动开发 > 详细

记录一下vue-cli3搭建项目后遇到axios请求跨域的问题

时间:2021-02-19 13:44:35      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:ebs   websocket   nbsp   目录   css   local   module   conf   https   

只记录一种最简便的方法,在项目根目录下创建vue.config.js,修改默认配置:

 1 module.exports = {
 2     outputDir: ‘dist‘, //build输出目录
 3     assetsDir: ‘assets‘, //静态资源目录(js, css, img)
 4     lintOnSave: false, //是否开启eslint
 5     devServer: {
 6         open: true, //是否自动弹出浏览器页面
 7         host: "localhost",
 8         port: ‘8080‘,
 9         https: false, //是否使用https协议
10         hotOnly: false, //是否开启热更新
11         proxy: {
12             ‘/api‘: {
13                 target: ‘http://localhost:8088‘, //API服务器的地址
14                 ws: true, //代理websockets
15                 changeOrigin: true, // 虚拟的站点需要更管origin
16                 pathRewrite: { //重写路径 比如‘/api/aaa/ccc‘重写为‘/aaa/ccc‘
17                     ‘^/api‘: ‘‘
18                 }
19             }
20         }
21     }
22 };

 

记录一下vue-cli3搭建项目后遇到axios请求跨域的问题

标签:ebs   websocket   nbsp   目录   css   local   module   conf   https   

原文地址:https://www.cnblogs.com/xxySsm/p/14412215.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!