├── README.md └── vercel.json /README.md: -------------------------------------------------------------------------------- 1 | ## 介绍 2 | 使用Vercel做反向代理,访问GitHub网站. 3 | ## 部署 4 | [![Vercel](https://vercel.com/button)](https://vercel.com/import/project?template=https://github.com/Ykaiqx/Vercel-Reverse-Proxy) 5 | -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "rewrites": [ 3 | { 4 | "source": "/(.*)", 5 | "destination": "https://github.com/$1" 6 | } 7 | ] 8 | } 9 | --------------------------------------------------------------------------------