Files
rohitg00__agentmemory/website/vercel.json
Rohit Ghumare 1a7b5ca181 Serve docs at agent-memory.dev/docs via Mintlify rewrite (#885)
Per Mintlify's Vercel deploy guide, serve the docs at agent-memory.dev/docs by rewriting /docs and /docs/:match* to the Mintlify-hosted subdomain. Subdomain assumed to be agentmemory.mintlify.dev (matches the dashboard project name); change that one host if the actual Mintlify subdomain differs.
2026-06-10 13:52:33 +01:00

13 lines
237 B
JSON

{
"rewrites": [
{
"source": "/docs",
"destination": "https://agentmemory.mintlify.dev/docs"
},
{
"source": "/docs/:match*",
"destination": "https://agentmemory.mintlify.dev/docs/:match*"
}
]
}