import { defineContentConfig, defineCollection } from "@nuxt/content"; import { z } from "zod"; export default defineContentConfig({ collections: { projects: defineCollection({ type: "page", source: "projects/*.md", schema: z.object({ description: z.string(), url: z.url().nullable(), thumbnail: z.string(), preview: z.string(), order: z.number(), }), }), }, });