Configuration
There are a few options that can be passed to starlight-multi-sidebar
. See below for how to configure each of those options
import { defineConfig } from "astro/config";import starlight from "@astrojs/starlight";import starlightMultiSidebar from "@lorenzo_lewis/starlight-multi-sidebar";
// https://astro.build/configexport default defineConfig({ integrations: [ starlight({ plugins: [ starlightMultiSidebar({ switcherStyle: "horizontalList", }), ], }), ],});
switcherStyle
Type: "dropdown" | "horizontalList"
Default: "horizontalList"
Specifies which style should be used for the sidebar.