import { defineGeistdocsSourceConfig, geistdocsFrontmatterSchema, geistdocsMetaSchema, } from "@vercel/geistdocs/source-config"; import { defineDocs } from "fumadocs-mdx/config"; // You can customise Zod schemas for frontmatter and `meta.json` here // see https://fumadocs.dev/docs/mdx/collections export const docs = defineDocs({ dir: "content/docs", docs: { schema: geistdocsFrontmatterSchema, postprocess: { includeProcessedMarkdown: true, }, }, meta: { schema: geistdocsMetaSchema, }, }); export default defineGeistdocsSourceConfig();