Get Started
Nextra Docs Theme gives this app a production-grade docs shell with:
- top navigation
- searchable content
- sidebar navigation
- table of contents
Install
Use Bun in the monorepo root:
bun installThen verify docs dependencies:
bun --filter @classifyre/docs run lint
bun --filter @classifyre/docs run check-typesRun docs locally
bun --filter @classifyre/docs run devDocs run on http://localhost:3002 during development.
Production exports target /docs by default so they can be mounted inside the web bundle.
Export static docs
bun --filter @classifyre/docs run buildThis generates static output in apps/docs/out.
Sync into web bundle
bun run docs:syncThe sync script copies docs export into apps/web/public/docs.
Why this setup
We keep docs as a dedicated app for clean ownership while publishing it through
the existing web deployment under /docs.
Last updated on