-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathvercel.json
More file actions
59 lines (59 loc) · 2.27 KB
/
Copy pathvercel.json
File metadata and controls
59 lines (59 loc) · 2.27 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
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"version": 2,
"github": {
"enabled": true,
"silent": false
},
"regions": ["iad1"],
"framework": "nextjs",
"buildCommand": "npm run build",
"installCommand": "npm install",
"outputDirectory": ".next",
"cleanUrls": true,
"trailingSlash": false,
"headers": [
{
"source": "/(.*)",
"headers": [
{ "key": "X-Content-Type-Options", "value": "nosniff" },
{ "key": "Referrer-Policy", "value": "strict-origin-when-cross-origin" },
{ "key": "Permissions-Policy", "value": "camera=(), microphone=(), geolocation=()" },
{
"key": "Strict-Transport-Security",
"value": "max-age=63072000; includeSubDomains; preload"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self'; frame-ancestors 'self' https://sandbox.minepi.com https://app-cdn.minepi.com https://*.minepi.com https://*.pinet.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://sdk.minepi.com https://vercel.live https://*.vercel.live; frame-src 'self' https://vercel.live https://*.vercel.live https://accounts.pinet.com; connect-src 'self' https://vercel.live https://*.vercel.live https://*.vercel.com https://*.minepi.com https://accounts.pinet.com wss:; img-src 'self' data: https:; style-src 'self' 'unsafe-inline'; font-src 'self' data:; worker-src 'self' blob:; base-uri 'self'; form-action 'self';"
},
{ "key": "Link", "value": "<https://sandbox.minepi.com>; rel=preconnect" }
]
},
{
"source": "/validation-key.txt",
"headers": [
{ "key": "Content-Type", "value": "text/plain; charset=utf-8" },
{ "key": "Cache-Control", "value": "public, max-age=300, must-revalidate" }
]
},
{
"source": "/_next/static/(.*)",
"headers": [{ "key": "Cache-Control", "value": "public, max-age=31536000, immutable" }]
},
{
"source": "/(.*)\\.(css|js|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)",
"headers": [{ "key": "Cache-Control", "value": "public, max-age=86400, stale-while-revalidate=604800" }]
}
],
"crons": [
{
"path": "/api/sync",
"schedule": "0 0 * * *"
},
{
"path": "/api/daily-review",
"schedule": "0 3 * * *"
}
]
}