feat: support fumadocs

This commit is contained in:
ReaJason
2025-12-05 11:07:24 +08:00
parent 38ad19c7ea
commit 69910ec187
140 changed files with 4788 additions and 1438 deletions
+12
View File
@@ -0,0 +1,12 @@
import { index, type RouteConfig, route } from "@react-router/dev/routes";
export default [
index("routes/memshell.tsx", {
id: "index-memshell",
}),
route("docs/*", "docs/page.tsx"),
route("api/search", "docs/search.ts"),
route("about", "routes/about.tsx"),
route("memshell", "routes/memshell.tsx"),
route("probeshell", "routes/probeshell.tsx"),
] satisfies RouteConfig;