-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathvercel.json
More file actions
56 lines (56 loc) · 2.42 KB
/
vercel.json
File metadata and controls
56 lines (56 loc) · 2.42 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
{
"buildCommand": "bun run build",
"outputDirectory": "dist",
"framework": "vite",
"installCommand": "bun install",
"headers": [
{
"source": "/(.*)",
"headers": [
{ "key": "X-Content-Type-Options", "value": "nosniff" },
{ "key": "X-Frame-Options", "value": "DENY" },
{ "key": "X-XSS-Protection", "value": "0" },
{ "key": "Content-Security-Policy", "value": "default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://cdn.jsdelivr.net https://unpkg.com https://cdn.tailwindcss.com https://esm.sh https://binaries.soliditylang.org; script-src-elem 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://unpkg.com https://cdn.tailwindcss.com https://esm.sh https://binaries.soliditylang.org; style-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net; style-src-elem 'self' 'unsafe-inline' https://cdn.jsdelivr.net; img-src 'self' data: https:; font-src 'self' data:; connect-src 'self' https: wss:; worker-src 'self' blob:; frame-src 'self' blob:; frame-ancestors 'self'; manifest-src 'self'" },
{ "key": "Referrer-Policy", "value": "strict-origin-when-cross-origin" },
{ "key": "Permissions-Policy", "value": "camera=(), microphone=(), geolocation=()" }
]
},
{
"source": "/assets/(.*)",
"headers": [
{ "key": "Cache-Control", "value": "public, max-age=31536000, immutable" }
]
},
{
"source": "/sitemap.xml",
"headers": [
{ "key": "Cache-Control", "value": "public, max-age=86400, s-maxage=86400" },
{ "key": "Content-Type", "value": "application/xml" }
]
},
{
"source": "/robots.txt",
"headers": [
{ "key": "Cache-Control", "value": "public, max-age=86400" }
]
},
{
"source": "/llms.txt",
"headers": [
{ "key": "Cache-Control", "value": "public, max-age=3600" },
{ "key": "Content-Type", "value": "text/plain; charset=utf-8" }
]
},
{
"source": "/llms-full.txt",
"headers": [
{ "key": "Cache-Control", "value": "public, max-age=3600" },
{ "key": "Content-Type", "value": "text/plain; charset=utf-8" }
]
}
],
"rewrites": [
{ "source": "/favicon.ico", "destination": "/icon.svg" },
{ "source": "/((?!api|assets|sitemap|robots|llms|manifest|icon|og-image|favicon|erc8004|openapi|ai\\.txt|\\.well-known|\\.nojekyll|larry|404\\.html).*)", "destination": "/index.html" }
]
}