Vercel Deployments (Optional Mirror)
Overview:
- You can mirror the docs site to Vercel for redundancy or previews.
CLI:
vercel --cwd apps/docs --prod
vercel.json:
{
"builds": [{ "src": "apps/docs/package.json", "use": "@vercel/static-build" }],
"env": { "DOCS_ENV": "production" }
}
Notes:
- Prefer Cloudflare Pages as the primary; Vercel mirror should not overwrite your canonical domain.