mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-31 14:22:27 +00:00
8 lines
266 B
TypeScript
8 lines
266 B
TypeScript
import { defineCollection } from "astro:content"
|
|
import { docsLoader } from "@astrojs/starlight/loaders"
|
|
import { docsSchema } from "@astrojs/starlight/schema"
|
|
|
|
export const collections = {
|
|
docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }),
|
|
}
|