10 lines
346 B
TypeScript
10 lines
346 B
TypeScript
import { type RouteConfig, index, route } from "@react-router/dev/routes";
|
|
|
|
export default [
|
|
route("login", "routes/login.tsx"),
|
|
route("dashboard", "routes/dashboard.tsx"),
|
|
route("404", "routes/404.tsx"),
|
|
route("unauthorized", "routes/unauthorized.tsx"),
|
|
route("*", "routes/$.tsx"), // Catch-all route for 404s
|
|
] satisfies RouteConfig;
|