1import { defineCollection, z } from "astro:content"; 2import { glob } from "astro/loaders"; 3 4const blog = defineCollection({ 5 loader: glob({ pattern: "**/*.md", base: "./src/content/blog" }), 6 schema: z.object({ 7 title: z.string(), 8 bio: z.string(), 9 pub: z.date(), 10 }), 11}); 12 13export const collections = { blog };