OFFICIAL CROSSOVER:STREAM X-MEN '97, THE CAPED CRUSADER & AVENGERS: DOOMSDAY (2026)
HomeDocsDeployment
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

Instant

Connect your GitHub repository and Vercel automatically detects Next.js static export.

bash
# vercel.json (Already included)
{
  "cleanUrls": true,
  "trailingSlash": false
}

Cloudflare Pages

Global Edge

Deploy directly to Cloudflare's global edge network for fast worldwide asset delivery.

bash
# Build Command:
npm run build

# Build Output Directory:
out

AWS S3 & CloudFront

Enterprise

Sync 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 OSS

Host documentation for open-source repositories directly on github.io.

bash
npx gh-pages -d out -t true