import { defineCollection } from "astro:content"; import { glob } from "astro/loaders"; import { ProjectSchema } from "./types"; const projects = defineCollection({ loader: glob({ pattern: "**/*.mdx", base: "./src/content/projects" }), schema: ProjectSchema, }); export const collections = { projects };