-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathvercel.json
118 lines (118 loc) · 2.91 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-Frame-Options",
"value": "DENY"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
}
]
}
],
"redirects": [
{
"source": "/docs/v6.6rc/:url*",
"destination": "/docs/:url",
"statusCode": 302
},
{
"source": "/docs/v6.6/:url*",
"destination": "/docs/:url",
"statusCode": 302
},
{
"source": "/docs/v6.5/:url(^(?!.*\\.).*[^/]$)",
"destination": "/docs/v6.5/:url.html",
"statusCode": 302
},
{
"source": "/docs/v6.4/:url(^(?!.*\\.).*[^/]$)",
"destination": "/docs/v6.4/:url.html",
"statusCode": 302
},
{
"source": ":url(^(?!.*\\.).*[^/]$)",
"destination": ":url.html",
"statusCode": 302
},
{
"source": "/docs/resources/guidelines/core:url*",
"destination": "/docs/resources/guidelines/code/core:url",
"statusCode": 302
},
{
"source": "/docs/v/6.5/:url*",
"destination": "/docs/v6.5/:url",
"statusCode": 302
},
{
"source": "/docs/v/6.4/:url*",
"destination": "/docs/v6.4/:url",
"statusCode": 302
},
{
"source": "/docs/v/v6.4/:url*",
"destination": "/docs/v6.4/:url",
"statusCode": 302
},
{
"source": "/docs/v/v6.5/:url*",
"destination": "/docs/v6.5/:url",
"statusCode": 302
},
{
"source": "/docs/guides/integrations-api.html",
"destination": "/docs/guides/integrations-api/",
"statusCode": 302
},
{
"source": "/docs/guides/installation/legacy/:url*",
"destination": "/docs/guides/installation/",
"statusCode": 302
},
{
"source": "/docs/guides/installation/flex.html",
"destination": "/docs/guides/installation/",
"statusCode": 302
},
{
"source": "/docs/guides/installation.html",
"destination": "/docs/guides/installation/",
"statusCode": 302
},
{
"source": "/docs/concepts/api.html",
"destination": "/docs/concepts/api/",
"statusCode": 302
},
{
"source": "/docs/resources/guidelines/testing/store/quality-guidelines-plugins.html",
"destination": "/docs/resources/guidelines/testing/store/quality-guidelines-plugins/",
"statusCode": 302
},
{
"source": "/docs/SUMMARY.html",
"destination": "/docs/",
"statusCode": 302
},
{
"source": "/docs/products/extensions/advanced-search.html",
"destination": "/docs/products/extensions/advanced-search/",
"statusCode": 302
},
{
"source": "/docs/guides/plugins/plugins/framework/custom-field.html",
"destination": "/docs/guides/plugins/plugins/framework/custom-field/",
"statusCode": 302
}
]
}