mirror of
https://github.com/plannotator/effective-html.git
synced 2026-09-19 01:11:19 +08:00
17 lines
320 B
TypeScript
17 lines
320 B
TypeScript
import { defineDocs } from "fumadocs-mdx/macro";
|
|
import { loader } from "fumadocs-core/source";
|
|
|
|
const docs = defineDocs({
|
|
dir: "content/docs",
|
|
docs: {
|
|
postprocess: {
|
|
includeProcessedMarkdown: true,
|
|
},
|
|
},
|
|
});
|
|
|
|
export const source = loader({
|
|
baseUrl: "/docs",
|
|
source: docs.toFumadocsSource(),
|
|
});
|