Files
MemShellParty/web/app/routes.ts
T
2026-03-30 21:55:55 +08:00

16 lines
513 B
TypeScript

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('llms.txt', 'llms/index.ts'),
route('llms-full.txt', 'llms/full.ts'),
route('llms.mdx/docs/*', 'llms/mdx.ts'),
route("about", "routes/about.tsx"),
route("memshell", "routes/memshell.tsx"),
route("probeshell", "routes/probeshell.tsx"),
] satisfies RouteConfig;