From a0ff184b918ff3cdd0528dbe58ad8e40bbbb7879 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Sun, 29 Sep 2024 16:55:45 +0200 Subject: [PATCH] chore: Collapse sidebar sections in astro.config.mjs --- astro.config.mjs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/astro.config.mjs b/astro.config.mjs index 1aded33..c1a0fcc 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -192,6 +192,7 @@ export default defineConfig({ sidebar: [ { label: "Get Started", + collapsed: true, items: [ { label: "Introduction", link: "/" }, { label: "Screenshots", link: "/screenshots" }, @@ -622,7 +623,7 @@ export default defineConfig({ }, { label: "Knowledge Base", - collapsed: false, + collapsed: true, items: [ { label: "FAQ", link: "/knowledge-base/faq" }, @@ -841,6 +842,7 @@ export default defineConfig({ }, { label: "API Reference", + collapsed: true, items: [ { label: "Authorization", link: "/api-reference/authorization" }, ...openAPISidebarGroups,