Skip to content

@simonhyll/starlight-enhanced

starlight-enhanced

A plugin for Starlight to get that Simon feeling to it

Getting Started

Simply add the package and register it in Starlight. It uses multi sidebar by Lorenzo as a peer dependency, so make sure to add it as well..

pnpm add @simonhyll/starlight-enhanced @lorenzo_lewis/starlight-utils
astro.config.mjs
import starlightUtils from '@lorenzo_lewis/starlight-utils';
import starlightEnhanced from '@simonhyll/starlight-enhanced';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
plugins: [starlightUtils({}), starlightEnhanced({})]
})
})