vue3+vite解决跨域

本文介绍了如何使用Vite的配置代理解决Vue3开发环境的跨域问题,以及在生产环境中利用Nginx进行API转发以实现跨域访问。主要涉及Vite的`vite.config.js`文件中的proxy设置,以及Nginx的配置文件,包括location规则和proxy_pass指令。通过这些设置,可以确保前端应用与后端API服务之间的通信顺利进行。
摘要由CSDN通过智能技术生成

vue3+vite解决跨域

vite

//vite.config.js
  server: {
    port: '3000',
    open: false, //自动打开 
    base: "./ ", //生产环境路径
    proxy: { // 本地开发环境通过代理实现跨域,生产环境使用 nginx 转发
      // 正则表达式写法
      '^/api': {
        target: 'http://xxx.xxx.xxx.xxx:9999', // 后端服务实际地址
        changeOrigin: true, //开启代理
        rewrite: (path) => path.replace(/^\/api/, '')
      }
    }
  },

nginx



#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       8080;
        server_name  localhost;

        location / {
            try_files $uri $uri/ @router; #解决刷新后页面空白
            root   html;
            index  index.html index.htm;
            #  add_header 'Access-Control-Allow-Origin' '*';
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
        location @router{   #重点:这里用来进行重写操作, 对应上面的@router
						rewrite ^.*$ /index.html last;
			}
		location ~ /api/ {	#重点: api转发,转发到你的api发布地址
					rewrite /api/(.*)$ /$1 break;
                    proxy_pass http://xxx.xxx.xxx.xxx:8888;
			}


    include servers/*;
}


  • 4
    点赞
  • 14
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值