forked from gaboolic/vercel-reverse-fast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvercel.json
16 lines (16 loc) · 1018 Bytes
/
vercel.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"rewrites": [
{ "source": "/:match/:url*", "destination": "https://:match/:url*" },
{ "source": "/:match/:url*/", "destination": "https://:match/:url*/" },
{ "source": "/h/:match/:url*", "destination": "http://:match/:url*" },
{ "source": "/h/:match/:url*/", "destination": "http://:match/:url*/" },
{ "source": "/:match/:url(google.com)", "destination": "https://www.google.com/" },
{ "source": "/:url(search.*)", "destination": "https://www.google.com/:url" },
{ "source": "/:url(scholar.*)", "destination": "https://scholar.google.com/:url" },
{ "source": "/wss/:match/:url*", "destination": "wss://:match/:url*" },
{ "source": "/:protocol/:match/:url*", "destination": ":protocol://:match/:url*" },
{ "source": "/:protocol/:match/:url*/", "destination": ":protocol://:match/:url*/" },
{ "source": "/:protocol*/:match/:url*", "destination": ":protocol://:match/:url*" },
{ "source": "/:protocol*/:match/:url*/", "destination": ":protocol://:match/:url*/" }
]
}