-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathvercel.json
More file actions
128 lines (128 loc) · 4.52 KB
/
vercel.json
File metadata and controls
128 lines (128 loc) · 4.52 KB
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
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"framework": "nextjs",
"buildCommand": "./bin/vercel-build.sh",
"outputDirectory": "apps/web-next/.next",
"installCommand": "export DATABASE_URL=\"${DATABASE_URL:-$POSTGRES_PRISMA_URL}\" && npm install --include=dev",
"regions": ["iad1"],
"git": {
"deploymentEnabled": true
},
"functions": {
"app/api/v1/auth/**": {
"maxDuration": 30
},
"app/api/v1/base/**": {
"maxDuration": 60
},
"app/api/v1/livepeer/**": {
"maxDuration": 60
},
"app/api/v1/pipelines/**": {
"maxDuration": 120
},
"app/api/v1/storage/**": {
"maxDuration": 60
},
"app/api/v1/gw/admin/metrics/aggregate/**": {
"maxDuration": 120
},
"app/api/v1/gw/**": {
"maxDuration": 60
},
"app/api/v1/[plugin]/**": {
"maxDuration": 30
},
"app/api/v1/dashboard/**": {
"maxDuration": 60
}
},
"headers": [
{
"source": "/api/(.*)",
"headers": [
{ "key": "Access-Control-Allow-Methods", "value": "GET,POST,PUT,DELETE,OPTIONS,PATCH" },
{
"key": "Access-Control-Allow-Headers",
"value": "X-CSRF-Token, X-Requested-With, Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, X-Api-Version, Authorization, X-Request-ID, X-Trace-ID, X-Team-ID, Idempotency-Key"
},
{ "key": "Access-Control-Max-Age", "value": "86400" },
{ "key": "X-Content-Type-Options", "value": "nosniff" },
{ "key": "X-DNS-Prefetch-Control", "value": "on" }
]
},
{
"source": "/api/health",
"headers": [
{ "key": "Cache-Control", "value": "no-store, no-cache, must-revalidate, max-age=0" }
]
},
{
"source": "/((?!api|_next|plugins).*)",
"headers": [
{ "key": "X-Frame-Options", "value": "DENY" },
{ "key": "X-Content-Type-Options", "value": "nosniff" },
{ "key": "Referrer-Policy", "value": "strict-origin-when-cross-origin" },
{ "key": "Permissions-Policy", "value": "camera=(self), microphone=(self), display-capture=(self), geolocation=()" },
{
"key": "Content-Security-Policy",
"value": "default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://vercel.live https://*.vercel.app; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' data: https://fonts.gstatic.com; img-src 'self' data: blob: https:; connect-src 'self' https: wss:; frame-src 'self' https://vercel.live; frame-ancestors 'none';"
}
]
},
{
"source": "/plugins/(.*)",
"headers": [
{ "key": "X-Content-Type-Options", "value": "nosniff" },
{ "key": "Referrer-Policy", "value": "strict-origin-when-cross-origin" },
{ "key": "Permissions-Policy", "value": "camera=(self), microphone=(self), display-capture=(self), geolocation=(self)" },
{ "key": "Cache-Control", "value": "public, max-age=31536000, immutable" }
]
},
{
"source": "/_next/static/(.*)",
"headers": [
{ "key": "Cache-Control", "value": "public, max-age=31536000, immutable" }
]
},
{
"source": "/cdn/plugins/:name/:version/(.*)",
"headers": [
{ "key": "Cache-Control", "value": "public, max-age=0, must-revalidate" },
{ "key": "X-Content-Type-Options", "value": "nosniff" }
]
},
{
"source": "/favicon.ico",
"headers": [
{ "key": "Cache-Control", "value": "public, max-age=86400" }
]
}
],
"rewrites": [
{
"source": "/plugin-assets/:path*",
"destination": "/cdn/plugins/:path*"
},
{
"source": "/api/v1/gw/.well-known/gateway.json",
"destination": "/api/v1/gw/discovery"
},
{
"source": "/.well-known/gateway.json",
"destination": "/api/v1/gw/discovery"
}
],
"redirects": [],
"crons": [
{ "path": "/api/v1/gw/admin/health/check", "schedule": "*/5 * * * *" },
{ "path": "/api/v1/gw/admin/metrics/aggregate", "schedule": "5 * * * *" },
{ "path": "/api/v1/naap-api/warm", "schedule": "*/50 * * * *" },
{ "path": "/api/internal/bff-warm", "schedule": "*/10 * * * *" },
{ "path": "/api/v1/wallet/jobs/prices", "schedule": "*/5 * * * *" },
{ "path": "/api/v1/wallet/jobs/unbonding", "schedule": "*/5 * * * *" },
{ "path": "/api/v1/wallet/jobs/snapshot", "schedule": "0 * * * *" },
{ "path": "/api/v1/wallet/jobs/alerts", "schedule": "*/5 * * * *" },
{ "path": "/api/v1/wallet/jobs/network-snapshot", "schedule": "0 */6 * * *" }
]
}