Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
436 Bytes
import {
defineConfig,
defineDocs,
frontmatterSchema,
metaSchema,
} from 'fumadocs-mdx/config'
// You can customise Zod schemas for frontmatter and `meta.json` here
// see https://fumadocs.vercel.app/docs/mdx/collections#define-docs
export const docs = defineDocs({
docs: {
schema: frontmatterSchema,
},
meta: {
schema: metaSchema,
},
dir: '../../docs',
})
export default defineConfig({
mdxOptions: {},
})