mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-21 22:50:42 +08:00
16 lines
513 B
TypeScript
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;
|