mirror of
https://github.com/prdlk/leetcode.git
synced 2026-08-02 17:31:40 +00:00
17 lines
337 B
TypeScript
17 lines
337 B
TypeScript
import { defineDocs } from "fumadocs-mdx/config";
|
|||
|
|
import { metaSchema, pageSchema } from "fumapress/adapters/mdx/schema";
|
||
|
|
|
||
|
|
export const docs = defineDocs({
|
||
|
|
dir: "content",
|
||
|
|
docs: {
|
||
|
|
async: true,
|
||
|
|
schema: pageSchema,
|
||
|
|
postprocess: {
|
||
|
|
includeProcessedMarkdown: true,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
meta: {
|
||
|
|
schema: metaSchema,
|
||
|
|
},
|
||
|
|
});
|