-
-
Notifications
You must be signed in to change notification settings - Fork 128
/
vercel.json
178 lines (178 loc) · 4.65 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
{
"version": 2,
"regions": [
"all"
],
"rewrites": [
{
"source": "/appveyor/:match*",
"destination": "https://v2022.badgen.net/appveyor/:match*"
},
{
"source": "/azure-pipelines/:match*",
"destination": "https://v2022.badgen.net/azure-pipelines/:match*"
},
{
"source": "/badgesize/:match*",
"destination": "https://v2022.badgen.net/badgesize/:match*"
},
{
"source": "/cocoapods/:match*",
"destination": "https://v2022.badgen.net/cocoapods/:match*"
},
{
"source": "/codacy/:match*",
"destination": "https://v2022.badgen.net/codacy/:match*"
},
{
"source": "/cpan/:match*",
"destination": "https://v2022.badgen.net/cpan/:match*"
},
{
"source": "/cran/:match*",
"destination": "https://v2022.badgen.net/cran/:match*"
},
{
"source": "/ctan/:match*",
"destination": "https://v2022.badgen.net/ctan/:match*"
},
{
"source": "/deepscan/:match*",
"destination": "https://v2022.badgen.net/deepscan/:match*"
},
{
"source": "/dependabot/:match*",
"destination": "https://v2022.badgen.net/dependabot/:match*"
},
{
"source": "/devrant/:match*",
"destination": "https://v2022.badgen.net/devrant/:match*"
},
{
"source": "/dub/:match*",
"destination": "https://v2022.badgen.net/dub/:match*"
},
{
"source": "/elm-package/:match*",
"destination": "https://v2022.badgen.net/elm-package/:match*"
},
{
"source": "/f-droid/:match*",
"destination": "https://v2022.badgen.net/f-droid/:match*"
},
{
"source": "/gitter/:match*",
"destination": "https://v2022.badgen.net/gitter/:match*"
},
{
"source": "/haxelib/:match*",
"destination": "https://v2022.badgen.net/haxelib/:match*"
},
{
"source": "/homebrew/:match*",
"destination": "https://v2022.badgen.net/homebrew/:match*"
},
{
"source": "/jenkins/:match*",
"destination": "https://v2022.badgen.net/jenkins/:match*"
},
{
"source": "/jsdelivr/:match*",
"destination": "https://v2022.badgen.net/jsdelivr/:match*"
},
{
"source": "/keybase/:match*",
"destination": "https://v2022.badgen.net/keybase/:match*"
},
{
"source": "/liberapay/:match*",
"destination": "https://v2022.badgen.net/liberapay/:match*"
},
{
"source": "/mastodon/:match*",
"destination": "https://v2022.badgen.net/mastodon/:match*"
},
{
"source": "/maven/:match*",
"destination": "https://v2022.badgen.net/maven/:match*"
},
{
"source": "/melpa/:match*",
"destination": "https://v2022.badgen.net/melpa/:match*"
},
{
"source": "/nuget/:match*",
"destination": "https://v2022.badgen.net/nuget/:match*"
},
{
"source": "/opam/:match*",
"destination": "https://v2022.badgen.net/opam/:match*"
},
{
"source": "/opencollective/:match*",
"destination": "https://v2022.badgen.net/opencollective/:match*"
},
{
"source": "/packagist/:match*",
"destination": "https://v2022.badgen.net/packagist/:match*"
},
{
"source": "/reddit/:match*",
"destination": "https://v2022.badgen.net/reddit/:match*"
},
{
"source": "/rubygems/:match*",
"destination": "https://v2022.badgen.net/rubygems/:match*"
},
{
"source": "/scoop/:match*",
"destination": "https://v2022.badgen.net/scoop/:match*"
},
{
"source": "/shards/:match*",
"destination": "https://v2022.badgen.net/shards/:match*"
},
{
"source": "/snapcraft/:match*",
"destination": "https://v2022.badgen.net/snapcraft/:match*"
},
{
"source": "/snyk/:match*",
"destination": "https://v2022.badgen.net/snyk/:match*"
},
{
"source": "/tidelift/:match*",
"destination": "https://v2022.badgen.net/tidelift/:match*"
},
{
"source": "/twitter/:match*",
"destination": "https://v2022.badgen.net/twitter/:match*"
},
{
"source": "/uptime-robot/:match*",
"destination": "https://v2022.badgen.net/uptime-robot/:match*"
},
{
"source": "/wapm/:match*",
"destination": "https://v2022.badgen.net/wapm/:match*"
}
],
"redirects": [
{
"source": "/docs/:match*",
"destination": "/:match*"
}
],
"functions": {
"pages/api/**/*": {
"memory": 128,
"maxDuration": 32
}
},
"env": {
"GH_TOKENS": "@badgen-gh-tokens",
"SENTRY_DSN": "@badgen-sentry-dsn",
"GA_MEASUREMENT_ID": "@badgen-tracking-ga",
"GITLAB_TOKENS": "@badgen-gl-tokens"
}
}