Skip to content

Commit 046e3ea

Browse files
committed
Update docs
1 parent 78369a2 commit 046e3ea

File tree

3 files changed

+3382
-893
lines changed

3 files changed

+3382
-893
lines changed

docs/.vitepress/config.ts

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
11
import { defineConfig } from "vitepress";
2+
import llmstxt from "vitepress-plugin-llms";
3+
import { withMermaid } from "vitepress-plugin-mermaid";
24

3-
export default defineConfig({
5+
export default withMermaid(defineConfig({
46
title: "Foundatio FetchClient",
57
description:
68
"A tiny, typed wrapper around fetch with caching, middleware, rate limiting, and great DX.",
79
base: "/",
810
ignoreDeadLinks: true,
11+
markdown: {
12+
lineNumbers: false,
13+
},
14+
vite: {
15+
plugins: [
16+
llmstxt({
17+
ignoreFiles: ["node_modules/**", ".vitepress/**"],
18+
}),
19+
],
20+
},
921
head: [
1022
[
1123
"link",
@@ -63,7 +75,4 @@ export default defineConfig({
6375
provider: "local",
6476
},
6577
},
66-
markdown: {
67-
lineNumbers: false,
68-
},
69-
});
78+
}));

0 commit comments

Comments
 (0)