-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
38 lines (38 loc) · 1.45 KB
/
Copy pathvercel.json
File metadata and controls
38 lines (38 loc) · 1.45 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
{
"git": { "deploymentEnabled": false },
"buildCommand": "cd beliefs-app && npm ci && npm run build",
"outputDirectory": ".",
"headers": [
{
"source": "/(.*)\\.(woff|woff2|ttf|eot|otf)",
"headers": [
{ "key": "Cache-Control", "value": "public, max-age=31536000, immutable" }
]
},
{
"source": "/(.*)\\.(webp|png|jpg|jpeg|gif|svg|ico|mp4|webm)",
"headers": [
{ "key": "Cache-Control", "value": "public, max-age=2592000" }
]
},
{
"source": "/(.*)\\.(css|js)",
"headers": [
{ "key": "Cache-Control", "value": "public, max-age=3600, must-revalidate" }
]
}
],
"rewrites": [
{ "source": "/speaker", "destination": "/speaker.html" },
{ "source": "/publications", "destination": "/publications.html" },
{ "source": "/beliefs", "destination": "/beliefs/index.html" },
{ "source": "/beliefs/blog", "destination": "/beliefs/index.html" },
{ "source": "/beliefs/ai-divide", "destination": "/beliefs/index.html" },
{ "source": "/beliefs/new-disorder", "destination": "/beliefs/index.html" },
{ "source": "/beliefs/europe", "destination": "/beliefs/index.html" },
{ "source": "/beliefs/us-decline", "destination": "/beliefs/index.html" },
{ "source": "/intake", "destination": "/intake.html" },
{ "source": "/claude-guide", "destination": "/claude-guide.html" },
{ "source": "/nxt-checkliste", "destination": "/nxt-checkliste.html" }
]
}