2025-05-23 08:41:03 +03:00

9 lines
228 B
TypeScript

import { type RouteConfig, index, prefix, route } from "@react-router/dev/routes";
export default [
index("routes/home.tsx"),
...prefix("auth",[
index("./routes/auth/login.tsx"),
])
] satisfies RouteConfig;