Multi-Cloud Deployment
Deploying Static Documentation Anywhere
Because this site is 100% static, you can deploy the generated out/ directory to any web server, CDN, or static hosting provider.
Vercel Static
InstantConnect your GitHub repository and Vercel automatically detects Next.js static export.
bash
# vercel.json (Already included)
{
"cleanUrls": true,
"trailingSlash": false
}Cloudflare Pages
Global EdgeDeploy directly to Cloudflare's global edge network for fast worldwide asset delivery.
bash
# Build Command:
npm run build
# Build Output Directory:
outAWS S3 & CloudFront
EnterpriseSync the static out folder to an S3 bucket with CloudFront CDN distribution.
bash
aws s3 sync ./out s3://your-docs-bucket --delete
aws cloudfront create-invalidation --distribution-id YOUR_DIST_ID --paths "/*"GitHub Pages
Free OSSHost documentation for open-source repositories directly on github.io.
bash
npx gh-pages -d out -t true