From 3690851fb1287c549378631fd7cdc327f8506660 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 20 Aug 2026 14:44:01 +0000 Subject: [PATCH] fix(docs): list `references` in the root sidebar so the Reference tree is reachable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Root `content/docs/meta.json` declares an explicit `pages` array and no `meta.json` under `content/docs/**` carries a `"..."` rest entry, so fumadocs' page-tree builder pushed only the listed items into `node.children` — leaving all 199 generated pages under `content/docs/references/**` out of the sidebar entirely. They rendered at their URLs but could only be reached from two inline links. Adds `references` to the existing `---Platform---` group, immediately after `protocol`. No group is added and no existing entry moves; `releases` is byte-identical. Verified by rendering, not by reading the config: the docs app was booted and the sidebar compared before and after. Before, the Platform group ended Protocol Spec / Releases. After, it reads Protocol Spec / Reference / Releases, and the Reference branch expands to all 14 protocol modules. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01GawRwpD44VwBDVy3hs77AX --- content/docs/meta.json | 1 + 1 file changed, 1 insertion(+) diff --git a/content/docs/meta.json b/content/docs/meta.json index 6da91d755b..0abf25ac27 100644 --- a/content/docs/meta.json +++ b/content/docs/meta.json @@ -19,6 +19,7 @@ "plugins", "kernel", "protocol", + "references", "releases" ] }