-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
44 lines (44 loc) · 1.17 KB
/
Copy pathvercel.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"framework": "nextjs",
"buildCommand": "npm run build",
"devCommand": "npm run dev",
"outputDirectory": ".next",
"headers": [
{
"source": "/.well-known/(agent-skills|skills)/index.json",
"headers": [
{ "key": "Content-Type", "value": "application/json" },
{ "key": "Access-Control-Allow-Origin", "value": "*" },
{ "key": "Cache-Control", "value": "public, max-age=3600" }
]
},
{
"source": "/.well-known/(agent-skills|skills)/:skill/SKILL.md",
"headers": [
{ "key": "Content-Type", "value": "text/markdown; charset=utf-8" },
{ "key": "Access-Control-Allow-Origin", "value": "*" },
{ "key": "Cache-Control", "value": "public, max-age=3600" }
]
}
],
"rewrites": [
{
"source": "/.well-known/agent-skills/:path*",
"destination": "/.well-known/skills/:path*"
},
{
"source": "/docs",
"destination": "https://solidstate.mintlify.dev/docs"
},
{
"source": "/docs/:match*",
"destination": "https://solidstate.mintlify.dev/docs/:match*"
}
],
"crons": [
{
"path": "/api/keepalive",
"schedule": "0 8 * * *"
}
]
}