-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathvercel.json
More file actions
65 lines (65 loc) · 1.59 KB
/
Copy pathvercel.json
File metadata and controls
65 lines (65 loc) · 1.59 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
{
"cleanUrls": true,
"trailingSlash": false,
"outputDirectory": "playground",
"buildCommand": "npm run launch-config:generate",
"github": {
"silent": true
},
"functions": {
"api/rewrite.js": {
"includeFiles": "{patterns/**,document-types/**,personas/**,core/**,lexicon/**,.patina.default.yaml}"
},
"api/pro-monitor.js": {
"maxDuration": 60
}
},
"crons": [
{
"path": "/api/pro-monitor",
"schedule": "*/15 * * * *"
}
],
"rewrites": [
{
"source": "/",
"destination": "/index.html"
}
],
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "Referrer-Policy",
"value": "strict-origin-when-cross-origin"
},
{
"key": "Permissions-Policy",
"value": "clipboard-write=(self), camera=(), microphone=(), geolocation=()"
},
{
"key": "Content-Security-Policy",
"value": "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net; font-src 'self' https://cdn.jsdelivr.net; img-src 'self' data:; connect-src 'self'; base-uri 'self'; form-action 'none'; frame-ancestors 'none'"
}
]
},
{
"source": "/launch-config.js",
"headers": [
{
"key": "Content-Type",
"value": "application/javascript; charset=utf-8"
},
{
"key": "Cache-Control",
"value": "no-store, max-age=0"
}
]
}
]
}