blob: d3ee572c3719154b1e696044668c05c37dd36827 [file]
import { defineCollection, z } from "astro:content";
import { glob } from "astro/loaders";
const docs = defineCollection({
loader: glob({ pattern: "**/*.md", base: "./src/content/docs" }),
schema: z.object({
title: z.string().optional(),
description: z.string().optional(),
}),
});
export const collections = { docs };