aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/content.config.ts
blob: 7fbcf2c33262d746e2fdfb8970347b6a8226a7ed (plain)
1
2
3
4
5
6
7
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() }),
};