-
-
Notifications
You must be signed in to change notification settings - Fork 482
Expand file tree
/
Copy pathvercel.json
More file actions
94 lines (94 loc) Β· 2.98 KB
/
Copy pathvercel.json
File metadata and controls
94 lines (94 loc) Β· 2.98 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"redirects": [
{
"source": "/index-en.html",
"destination": "/",
"permanent": true
},
{
"source": "/",
"has": [{ "type": "query", "key": "mode", "value": "agent" }],
"destination": "/index.md",
"permanent": false
},
{
"source": "/",
"has": [{ "type": "header", "key": "accept", "value": ".*text/markdown.*" }],
"destination": "/index.md",
"permanent": false
}
],
"rewrites": [
{ "source": "/developers", "destination": "/developers.html" },
{ "source": "/about", "destination": "/about.html" },
{ "source": "/contact", "destination": "/contact.html" },
{ "source": "/privacy", "destination": "/privacy.html" }
],
"headers": [
{
"source": "/",
"headers": [
{ "key": "Vary", "value": "Accept, Accept-Encoding" },
{
"key": "Link",
"value": "</sitemap.xml>; rel=\"sitemap\", </index.md>; rel=\"alternate\"; type=\"text/markdown\", </llms.txt>; rel=\"service-doc\"; type=\"text/plain\", </.well-known/mcp/server-card.json>; rel=\"service-desc\"; type=\"application/json\", </feeds/catalog.jsonld>; rel=\"describedby\"; type=\"application/ld+json\", </developers>; rel=\"help\""
}
]
},
{
"source": "/developers",
"headers": [
{ "key": "Vary", "value": "Accept, Accept-Encoding" },
{
"key": "Link",
"value": "</developers.md>; rel=\"alternate\"; type=\"text/markdown\", </developers/llms.txt>; rel=\"service-doc\"; type=\"text/plain\", </.well-known/mcp/server-card.json>; rel=\"service-desc\"; type=\"application/json\", </feeds/catalog.jsonld>; rel=\"describedby\"; type=\"application/ld+json\""
}
]
},
{
"source": "/about",
"headers": [
{ "key": "Link", "value": "</about.md>; rel=\"alternate\"; type=\"text/markdown\"" }
]
},
{
"source": "/contact",
"headers": [
{ "key": "Link", "value": "</contact.md>; rel=\"alternate\"; type=\"text/markdown\"" }
]
},
{
"source": "/privacy",
"headers": [
{ "key": "Link", "value": "</privacy.md>; rel=\"alternate\"; type=\"text/markdown\"" }
]
},
{
"source": "/(.*).md",
"headers": [
{ "key": "Content-Type", "value": "text/markdown; charset=utf-8" },
{ "key": "Access-Control-Allow-Origin", "value": "*" }
]
},
{
"source": "/feeds/(.*).jsonld",
"headers": [
{ "key": "Content-Type", "value": "application/ld+json; charset=utf-8" },
{ "key": "Access-Control-Allow-Origin", "value": "*" }
]
},
{
"source": "/.well-known/(.*).json",
"headers": [
{ "key": "Content-Type", "value": "application/json; charset=utf-8" },
{ "key": "Access-Control-Allow-Origin", "value": "*" }
]
},
{
"source": "/schemamap.xml",
"headers": [
{ "key": "Content-Type", "value": "application/xml; charset=utf-8" }
]
}
]
}