Skip to content

Commit 87af547

Browse files
committed
Set overview sidebar group to collapsed by default
Changed the 'collapsed' property of the overview sidebar group from false to true in astro.config.mjs, making the group collapsed by default for improved navigation.
1 parent 455c01f commit 87af547

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export default defineConfig({
104104
{
105105
label: 'Overview',
106106
autogenerate: { directory: 'docs/overview' },
107-
collapsed: false, // First group is expanded by default
107+
collapsed: true, // First group is expanded by default
108108
},
109109
{
110110
label: 'Quickstart',

0 commit comments

Comments
 (0)