UNPKG

starlight-view-modes

Version:

Starlight plugin adding view mode capabilities to your documentation website.

8 lines (6 loc) 270 B
import { docsLoader } from "@astrojs/starlight/loaders"; import { docsSchema } from "@astrojs/starlight/schema"; import { defineCollection } from "astro:content"; export const collections = { docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }), };