Skip to content

Commit

Permalink
feat: make sidebar uncollapsed
Browse files Browse the repository at this point in the history
  • Loading branch information
mildronize committed May 18, 2024
1 parent de9a1b5 commit 0a16308
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default defineConfig({
sidebar: [
{
text: "Start Reading",
collapsed: true,
collapsed: false,
items: [
{ text: "Introduction", link: "/intro" },
{ text: "Type-safe", link: "/type-safe" },
Expand All @@ -26,7 +26,7 @@ export default defineConfig({
},
{
text: "Data Structure",
collapsed: true,
collapsed: false,
items: [
{ text: "Intro", link: "/data-structure/data-structure" },
{ text: "Literal String", link: "/data-structure/literal-string" },
Expand All @@ -36,7 +36,7 @@ export default defineConfig({
},
{
text: "Design Patterns",
collapsed: true,
collapsed: false,
items: [
{ text: "Intro", link: "/design-patterns/design-patterns" },
{ text: "Builder Pattern", link: "/design-patterns/builder-pattern" },
Expand All @@ -52,15 +52,15 @@ export default defineConfig({
},
{
text: "Framework Pattern",
collapsed: true,
collapsed: false,
items: [
{ text: "Intro", link: "/framework-pattern/framework-pattern" },
{ text: "Config File", link: "/framework-pattern/config-file" },
],
},
{
text: "Performance",
collapsed: true,
collapsed: false,
items: [
{ text: "Intro", link: "/performance/performance" },
],
Expand Down

0 comments on commit 0a16308

Please sign in to comment.