UNPKG

starlight-auto-sidebar

Version:

Starlight plugin to tweak autogenerated sidebar groups.

16 lines (13 loc) 385 B
import { glob, type Loader } from 'astro/loaders' import { getRelativeSrcDir } from './libs/astro' export function autoSidebarLoader(): Loader { return { name: 'starlight-auto-sidebar-loader', load: (context) => { return glob({ base: `${getRelativeSrcDir(context.config)}content/docs`, pattern: `**/_meta.y?(a)ml`, }).load(context) }, } }