chore: import upstream snapshot with attribution
CI / frontend-quality (push) Failing after 1s

This commit is contained in:
wehub-resource-sync
2026-07-13 12:09:02 +08:00
commit b4eee4aa71
666 changed files with 124744 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
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
},
});