Something went wrong. Try again.
This repository has no description
Something went wrong. Try again.
270 B · 7 lines
TypeScript
12345678import { 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() }),};