blob: 8ca1209f6304ed3c733b69edf8fe6c9d1ae2f7b4 (
plain)
1
2
3
4
5
6
7
8
9
|
import { type RouteConfig, index, route } from "@react-router/dev/routes";
export default [
index("routes/home.tsx"),
route("/api/posts", "routes/api.posts.tsx"),
route("/auth/register", "routes/auth.register.tsx"),
route("/auth/login", "routes/auth.login.tsx"),
route("/auth/logout", "routes/auth.logout.tsx"),
] satisfies RouteConfig;
|