-
Notifications
You must be signed in to change notification settings - Fork 298
Expand file tree
/
Copy pathvercel.json
More file actions
13 lines (13 loc) · 777 Bytes
/
vercel.json
File metadata and controls
13 lines (13 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
{
"rewrites": [
{ "source": "/https/:match/:url*", "destination": "https://:match/:url*" },
{ "source": "/https/:match/:url*/", "destination": "https://:match/:url*/" },
{ "source": "/http/:match/:url*", "destination": "http://:match/:url*" },
{ "source": "/http/:match/:url*/", "destination": "http://:match/: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*/" }
]
}