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