Skip to content

Vercel 部署的前端服务与不同源后端服务器的通信

前提:

Vercel 是采用 https 来部署的,而我这里后端服务器采用的是阿里云的云服务,公网 iphttp, 前后端不同源且 传输协议不同

解决方案:

在前端项目文件夹下新建 vercel.json 文件,添加如下规则:

json
{
  "rewrites": [
    {
      "source": "/api/:path*",
      "destination": "http://localhost:3000/:path*"
    }
  ]
}

destnation 地址替换为你的后端服务器地址即可

2025( )
今日 8.33%
本周 42.86%
本月 48.39%
本年 4.11%
Powered by Snowinlu | Copyright © 2024- | MIT License