mirror of
https://github.com/documenso/documenso
synced 2026-04-21 21:37:18 +00:00
24 lines
581 B
TypeScript
24 lines
581 B
TypeScript
|
|
import { remarkMdxMermaid } from 'fumadocs-core/mdx-plugins';
|
||
|
|
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: {
|
||
|
|
remarkPlugins: [remarkMdxMermaid],
|
||
|
|
},
|
||
|
|
});
|