Reference
Deployment
How the site builds and where the output goes.
The site uses static export: next build pre-renders every page in the tree to plain HTML, CSS, and JavaScript in the out/ directory. Any static host can serve it; no server or environment variables are required.
npm run build # exports the site to out/
npm run start # serves out/ locallyBecause every URL is generated from the content tree at build time, a page you remove from DOCS stops existing — check for links to it from other pages before deleting.