init(Docs): add docs site based on Fumapress and Fumadocs

This commit is contained in:
Prad Nukala
2026-07-11 16:09:08 -04:00
parent d7dfa1e45a
commit dc20248d5f
12 changed files with 1188 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
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,
},
});