-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.examples.json
More file actions
17 lines (17 loc) · 908 Bytes
/
vercel.examples.json
File metadata and controls
17 lines (17 loc) · 908 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"framework": null,
"buildCommand": null,
"outputDirectory": "deploy/examples",
"installCommand": "npm ci",
"rewrites": [
{ "source": "/api/(.*)", "destination": "/api/[[...path]]" },
{ "source": "/langgraph/:path*/:file(.*\\..*)", "destination": "/langgraph/:path*/:file" },
{ "source": "/langgraph/:path*", "destination": "/langgraph/:path*/index.html" },
{ "source": "/deep-agents/:path*/:file(.*\\..*)", "destination": "/deep-agents/:path*/:file" },
{ "source": "/deep-agents/:path*", "destination": "/deep-agents/:path*/index.html" },
{ "source": "/render/:path*/:file(.*\\..*)", "destination": "/render/:path*/:file" },
{ "source": "/render/:path*", "destination": "/render/:path*/index.html" },
{ "source": "/chat/:path*/:file(.*\\..*)", "destination": "/chat/:path*/:file" },
{ "source": "/chat/:path*", "destination": "/chat/:path*/index.html" }
]
}