import { defineCollection, z } from 'astro:content'; import { glob } from 'astro/loaders'; const posts = defineCollection({ loader: glob({ pattern: '**/*.{md,mdx}', base: './src/content/posts', }), schema: z.object({ title: z.string(), date: z.coerce.date(), type: z.enum(['post', 'pattern', 'lesson']).default('post'), tags: z.array(z.string()).default([]), summary: z.string().optional(), }), }); export const collections = { posts };