-
Notifications
You must be signed in to change notification settings - Fork 41
/
vercel.json
66 lines (66 loc) · 1.61 KB
/
vercel.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"cleanUrls": true,
"redirects": [
{
"source": "/hirosystems/connect/tree/main/packages/:path*",
"has": [
{
"type": "host",
"value": "github.com"
}
],
"destination": "/modules/:path*",
"permanent": false
},
{
"source": "/packages/connect-ui",
"destination": "/modules/_stacks_connect_ui",
"permanent": false
},
{
"source": "/packages/connect-react",
"destination": "/modules/_stacks_connect_react",
"permanent": false
},
{
"source": "/packages/:path((?!_stacks_).*)",
"destination": "/modules/_stacks_:path*",
"permanent": false
},
{
"source": "/modules/:path((?!_stacks_).*)",
"destination": "/modules/_stacks_:path*",
"permanent": false
},
{
"source": "/enums/:path((?!_stacks_).*)",
"destination": "/enums/_stacks_:path*",
"permanent": false
},
{
"source": "/variables/:path((?!_stacks_).*)",
"destination": "/variables/_stacks_:path*",
"permanent": false
},
{
"source": "/functions/:path((?!_stacks_).*)",
"destination": "/functions/_stacks_:path*",
"permanent": false
},
{
"source": "/types/:path((?!_stacks_).*)",
"destination": "/types/_stacks_:path*",
"permanent": false
},
{
"source": "/interfaces/:path((?!_stacks_).*)",
"destination": "/interfaces/_stacks_:path*",
"permanent": false
},
{
"source": "/classes/:path((?!_stacks_).*)",
"destination": "/classes/_stacks_:path*",
"permanent": false
}
]
}