-
Notifications
You must be signed in to change notification settings - Fork 347
Expand file tree
/
Copy pathvercel.json
More file actions
45 lines (44 loc) · 993 Bytes
/
Copy pathvercel.json
File metadata and controls
45 lines (44 loc) · 993 Bytes
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
{
"functions": {
"api/mcp.ts": {
"maxDuration": 60,
"memory": 1024
},
"api/mcp-oauth.ts": {
"maxDuration": 60,
"memory": 1024
}
},
"rewrites": [
{
"source": "/",
"destination": "/api/mcp"
},
{
"source": "/mcp",
"destination": "/api/mcp"
},
{
"source": "/.well-known/mcp-config",
"destination": "/api/well-known-mcp-config"
},
{
"source": "/.well-known/oauth-protected-resource",
"destination": "/api/well-known-oauth-protected-resource"
},
{
"source": "/.well-known/oauth-protected-resource/:path*",
"destination": "/api/well-known-oauth-protected-resource"
},
{
"source": "/.well-known/openai-apps-challenge",
"destination": "/api/well-known-openai-apps-challenge"
},
{
"source": "/mcp/oauth",
"destination": "/api/mcp-oauth"
}
],
"buildCommand": "npm run build:vercel",
"outputDirectory": "dist"
}