A journal that ships as files.
This Next.js app uses Static Site Generation and output: "export". Every page is HTML before a visitor arrives.
Built at 2026-09-17T21:18:10.927Z
What static export actually produces
next build writes HTML, CSS, and JS into out/. Any file server or CDN can host it.
SSG versus request-time rendering
Static generation bakes data into HTML at build time. SSR recomputes a response for each request.
Hosting the out/ directory
Serve the exported files with any static host. trailingSlash: true keeps paths friendly for file servers.