vue cli 解决跨域 线上 nginx 反向代理配置
vue cli 解决跨域 线上 nginx 反向代理配置
1、开发环境跨域
在vue cli2中,在/config/index.js里找到proxyTable开启代理changeOrigin:ture;
1 | proxyTable: { |
在vue cli3中的vue.config.js(如果没有可以自行创建。注:与package.json同级目录)修改
1 | module.exports = { |
2、nginx反向代理设置
如果使用宝塔控制面板,请在当前站点文件夹下进行配置(位置如下图所示)
在配置文件(xx.conf)的server{}中按需加入如下代码:
1 | location /api/ { |
- Title: vue cli 解决跨域 线上 nginx 反向代理配置
- Author: 九號
- Created at : 2020-05-03 10:00:00
- Updated at : 2024-08-31 16:57:57
- Link: https://jhao.me/posts/61269/
- License: This work is licensed under CC BY-NC-SA 4.0.
Comments