mirror of
https://github.com/prdlk/leetcode.git
synced 2026-08-02 17:31:40 +00:00
12 lines
295 B
TypeScript
12 lines
295 B
TypeScript
import { defineConfig, defineDocs } from "fumadocs-mdx/config";
|
|
|
|
export const docs = defineDocs({
|
|
dir: "content/docs",
|
|
docs: {
|
|
// Required by fumapress' llms.txt plugin (getText("processed")).
|
|
postprocess: { includeProcessedMarkdown: true },
|
|
},
|
|
});
|
|
|
|
export default defineConfig();
|