From f7d36122bad7bf796688c786952844a02d06de60 Mon Sep 17 00:00:00 2001 From: Tulip Blossom Date: Mon, 9 Dec 2024 23:40:07 -0300 Subject: [PATCH] chore(sidebar): make it expanded by default for select categories --- sidebars.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sidebars.ts b/sidebars.ts index 22de92e..0d0c545 100644 --- a/sidebars.ts +++ b/sidebars.ts @@ -17,6 +17,7 @@ const sidebars: SidebarsConfig = { { type: "category", label: "Documentation", + collapsed: false, items: [ "introduction", "administration", @@ -30,21 +31,25 @@ const sidebars: SidebarsConfig = { { type: "category", label: "Contributing", + collapsed: true, items: ["contributing", "local"], }, { type: "category", label: "Framework Laptops", + collapsed: true, items: ["framework", "framework-13", "framework-16"], }, { type: "category", label: "T2 Macs (2018-2020)", + collapsed: true, items: ["t2-mac"], }, { type: "category", label: "Supporting The Project", + collapsed: false, items: ["donations"], }, ],