-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathvercel.json
42 lines (42 loc) · 1.71 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
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"rewrites": [{ "source": "/(.*)", "destination": "/" }],
"github": {
"silent": true
},
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "Access-Control-Allow-Origin",
"value": "https://*.rysk.finance"
},
{
"key": "Content-Security-Policy",
"value": "base-uri 'self'; default-src 'self' https://*.rysk.finance; frame-src 'self' https://verify.walletconnect.com; object-src 'none'; font-src 'self' fonts.gstatic.com; style-src 'self' 'unsafe-inline' fonts.googleapis.com; connect-src *; script-src 'self' 'strict-dynamic' https: http:; script-src-elem 'self' https://*.usefathom.com https://*.cloudflareinsights.com/; img-src 'self' data: https://*.walletconnect.com https://*.usefathom.com; frame-ancestors 'self' https://verify.walletconnect.com; form-action 'self';"
},
{
"key": "X-Frame-Options",
"value": "DENY"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=63072000; includeSubDomains; preload;"
},
{
"key": "Referrer-Policy",
"value": "no-referrer-when-downgrade"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
}
]
}
]
}