docs.json navigation:12345678910111213141516{ "navigation": { "tabs": [ { "tab": "Documentation", "groups": [ { "group": "Getting Started", "pages": ["index"] } ] }, { "tab": "API Reference", "openapi": "openapi.json" } ] } }
openapi.json (or openapi.yaml) file at the project root. If you set pagesDir, Holocron checks pagesDir first, then falls back to the project root.1234{ "tab": "API Reference", "openapi": ["openapi/v1.json", "openapi/v2.json"] }
/api/ (e.g. /api/get-users). Change the prefix with openapiBase:12345{ "tab": "API Reference", "openapi": "openapi.json", "openapiBase": "reference" }
/reference/get-users instead.openapiBase to "" for no prefix.tags field on each operation. The sidebar shows tag groups with individual endpoint pages.