Checkpoint

This commit is contained in:
2026-07-26 02:20:45 -03:00
parent f04cbb7e02
commit 0f506ec19e
38 changed files with 1757 additions and 154 deletions
+23
View File
@@ -0,0 +1,23 @@
import { defineConfig, defineDocs } from 'fumadocs-mdx/config';
import { metaSchema, pageSchema } from 'fumadocs-core/source/schema';
// You can customize Zod schemas for frontmatter and `meta.json` here
// see https://fumadocs.dev/docs/mdx/collections
export const docs = defineDocs({
dir: 'content',
docs: {
schema: pageSchema,
postprocess: {
includeProcessedMarkdown: true,
},
},
meta: {
schema: metaSchema,
},
});
export default defineConfig({
mdxOptions: {
// MDX options
},
});