Getting started
How to run and author the documentation app locally.
Run the app
From the monorepo root:
pnpm dev:documentationThe dev server starts on http://localhost:3071.
Author content
Pages live in content/docs/ as MDX. Each file's frontmatter sets its title and
description:
---
title: My page
description: A short summary.
---
Page body in **MDX**.Control sidebar grouping and ordering with meta.json:
{
"title": "Section title",
"pages": ["index", "getting-started"]
}Validate
pnpm typecheck --filter=documentation-v3-app
pnpm lint --filter=documentation-v3-app
pnpm build --filter=documentation-v3-app