SolidBase is currently in Beta!
Some options may not fully work or be documented.
Sidebar
The sidebar for the default theme is configured in the app config:
import { defineConfig } from "@solidjs/start/config";
import { createWithSolidBase } from "@kobalte/solidbase";
export default defineConfig(  createWithSolidBase(theme)(    /* SolidStart options */    {      ...    },    /* SolidBase options */    {      ...      themeConfig: {        ...        sidebar: {          "/guide": { // Route matching prefix            items: [              {                title: "Overview", // Group                collapsed: false,                items: [                  {                    title: "What is SolidBase?", // Item                    link: "/",                  },                  {                    title: "Getting Started",                    link: "/getting-started",                  },                  ...                ],              },              {                title: "Features", // Second Group                collapsed: false,                items: [                  {                    title: "Markdown Extensions",                    link: "/markdown",                  },                  ...                ],              },              ...            ],          },          "/reference": {            items: [              {                title: "Reference",                collapsed: false,                items: [                  {                    title: "Frontmatter Config",                    link: "/frontmatter",                  },                ],              },              {                title: "Default Theme",                collapsed: false,                items: [                  {                    title: "Overview",                    link: "/default-theme",                  },                  ...                ],              },            ],          },        },      },      ...    }  ));Last updated: 2/25/25, 6:46 PM
Edit this page on GitHub