Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 940 Bytes

File metadata and controls

40 lines (30 loc) · 940 Bytes

RootCause Documentation

This documentation site is English-only. The URL structure uses the /en/ prefix so that additional languages can be added later (e.g. /es/, /fr/) without changing existing links.

Structure

docs/
├── .vitepress/
│   └── config.js          # VitePress configuration
├── en/                     # English documentation
│   ├── index.md
│   ├── docs.md
│   ├── contact.md
│   ├── getting-started/
│   ├── CLI/
│   ├── plugins/
│   ├── rules/
│   └── architecture/      # (if present)
└── public/                 # Shared assets

Development

npm run dev

Site: http://localhost:5173/en/

Build

npm run build
npm run preview

Adding content

Add markdown files under docs/en/ in the appropriate section. Update the sidebar in docs/.vitepress/config.js (see sidebarEn).