OFFIZIELLER CROSSOVER:STREAMEN SIE X-MEN '97, THE CAPED CRUSADER & AVENGERS: DOOMSDAY (2026)
HomeDokumenteBereitstellung
Multi-Cloud-Bereitstellung

Statische Dokumentation überall bereitstellen

Da diese Website zu 100 % statisch ist, können Sie das generierte out/ Verzeichnis auf jedem Webserver, CDN oder statischen Hosting-Anbieter bereitstellen.

Vercel Static

Sofort

Verbinden Sie Ihr GitHub-Repository und Vercel erkennt automatisch den statischen Next.js-Export.

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

Cloudflare Pages

Global Edge

Stellen Sie direkt im globalen Edge-Netzwerk von Cloudflare für eine schnelle weltweite Bereitstellung von Assets bereit.

bash
# Build-Befehl:
npm run build

# Build-Ausgabeverzeichnis:
out

AWS S3 & CloudFront

Enterprise

Synchronisieren Sie den statischen out-Ordner mit einem S3-Bucket und einer 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

Kostenloses OSS

Hosten Sie Dokumentationen für Open-Source-Repositories direkt auf github.io.

bash
npx gh-pages -d out -t true