Initial commit from Create Fumadocs App

This commit is contained in:
2025-06-02 23:28:40 +08:00
commit 148aac5a92
20 changed files with 1158 additions and 0 deletions

23
source.config.ts Normal file
View File

@ -0,0 +1,23 @@
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,
},
});
export default defineConfig({
mdxOptions: {
// MDX options
},
});