-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathvercel.json
More file actions
65 lines (65 loc) · 1.62 KB
/
vercel.json
File metadata and controls
65 lines (65 loc) · 1.62 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
{
"redirects": [
{
"source": "/",
"destination": "/docs/build/overview",
"permanent": true
},
{
"source": "/docs",
"destination": "/",
"permanent": true
},
{
"source": "/docs/",
"destination": "/",
"permanent": true
},
{
"source": "/docs/learn/overview",
"destination": "/",
"permanent": true
},
{
"source": "/docs/llms.txt",
"destination": "/llms.txt",
"permanent": false
}
],
"rewrites": [
{ "source": "/llms.txt", "destination": "/llms.txt" },
{ "source": "/docs/:path*/llms.txt", "destination": "/docs/:path*/llms.txt" }
],
"headers": [
{
"source": "/docs/(.*).md",
"headers": [
{ "key": "Content-Type", "value": "text/plain; charset=utf-8" },
{ "key": "X-Content-Type-Options", "value": "nosniff" },
{ "key": "X-Robots-Tag", "value": "noindex" },
{ "key": "Cache-Control", "value": "public, max-age=3600, must-revalidate" }
]
},
{
"source": "/docs/(.*)/assets/(.*)",
"headers": [
{ "key": "X-Robots-Tag", "value": "noindex" },
{ "key": "Cache-Control", "value": "public, max-age=86400, immutable" }
]
},
{
"source": "/(.*)/llms.txt",
"headers": [
{ "key": "X-Robots-Tag", "value": "noindex" },
{ "key": "Content-Type", "value": "text/plain; charset=utf-8" }
]
},
{
"source": "/llms.txt",
"headers": [
{ "key": "X-Robots-Tag", "value": "noindex" },
{ "key": "Content-Type", "value": "text/plain; charset=utf-8" }
]
}
]
}