Skip to content

Commit

Permalink
Fix order and capitalization of sidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
kriskowal committed Oct 16, 2024
1 parent 716e3ff commit 83e0013
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,20 @@ export default defineConfig({
// social: {
// github: 'https://github.com/withastro/starlight',
// },
// sidebar: [
// {
// label: 'Guides',
// items: [
// // Each item here is one entry in the navigation menu.
// { label: 'Example Guide', slug: 'guides/example' },
// ],
// },
// {
// label: 'Reference',
// autogenerate: { directory: 'reference' },
// },
// ],
sidebar: [
{
label: "Challenge",
autogenerate: { directory: "challenge" },
},
{
label: "Console",
slug: "console",
},
{
label: "Blog",
autogenerate: { directory: "blog" },
},
],
}),
],
redirects: {
Expand Down

0 comments on commit 83e0013

Please sign in to comment.