starlight-sidebar-topics
Version:
Starlight plugin to split your documentation into different sections, each with its own sidebar.
10 lines (8 loc) • 357 B
text/typescript
import { AstroError } from 'astro/errors'
export function throwPluginError(message: string, hint?: string): never {
throw new AstroError(
message,
hint ??
`See the error report above for more informations.\n\nIf you believe this is a bug, please file an issue at https://github.com/HiDeoo/starlight-sidebar-topics/issues/new/choose`,
)
}