npx vite build produces a dist/ directory with everything needed to serve your docs site.123456dist/ ├── rsc/ │ ├── index.js # server entry │ └── ... ├── client/ # browser assets, CSS, JS, public files └── holocron-cache.json # Navigation cache for fast rebuilds
dist/holocron-cache.json contains the enriched navigation tree with git SHA hashes for each page. On subsequent builds, pages with unchanged SHAs are reused without re-parsing. Caching dist/ between CI runs gives near-instant rebuilds.holocron deploy CLI builds to dist/.holocron/ before upload. It uploads dist/.holocron/rsc as Worker files and dist/.holocron/client as static assets.