chore: Collapse sidebar sections in astro.config.mjs

This commit is contained in:
Andras Bacsai
2024-09-29 16:55:45 +02:00
parent ff4344ef27
commit a0ff184b91

View File

@@ -192,6 +192,7 @@ export default defineConfig({
sidebar: [ sidebar: [
{ {
label: "Get Started", label: "Get Started",
collapsed: true,
items: [ items: [
{ label: "Introduction", link: "/" }, { label: "Introduction", link: "/" },
{ label: "Screenshots", link: "/screenshots" }, { label: "Screenshots", link: "/screenshots" },
@@ -622,7 +623,7 @@ export default defineConfig({
}, },
{ {
label: "Knowledge Base", label: "Knowledge Base",
collapsed: false, collapsed: true,
items: [ items: [
{ label: "FAQ", link: "/knowledge-base/faq" }, { label: "FAQ", link: "/knowledge-base/faq" },
@@ -841,6 +842,7 @@ export default defineConfig({
}, },
{ {
label: "API Reference", label: "API Reference",
collapsed: true,
items: [ items: [
{ label: "Authorization", link: "/api-reference/authorization" }, { label: "Authorization", link: "/api-reference/authorization" },
...openAPISidebarGroups, ...openAPISidebarGroups,