Files
memegoat/documentation/source.config.ts
Mathis HERRIOT 91179199f7
Some checks failed
Documentation Lint / lint (push) Failing after 4m46s
refactor: migrate documentation to support multi-language structure with i18n integration
2026-01-05 01:23:00 +01:00

28 lines
484 B
TypeScript

import {
defineConfig,
defineDocs,
frontmatterSchema,
metaSchema,
} 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: frontmatterSchema,
postprocess: {
includeProcessedMarkdown: true,
},
},
meta: {
schema: metaSchema,
},
});
export default defineConfig({
mdxOptions: {
// MDX options
},
});