From 7c80f5ce7e44b95d16e19de40de0f8079377c6b9 Mon Sep 17 00:00:00 2001 From: yyamashita Date: Sat, 22 Aug 2026 19:21:12 +0900 Subject: Initial commit: todo app with passkey auth and PWA support Co-Authored-By: Claude Sonnet 4.6 --- app/routes.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 app/routes.ts (limited to 'app/routes.ts') diff --git a/app/routes.ts b/app/routes.ts new file mode 100644 index 0000000..24d9c49 --- /dev/null +++ b/app/routes.ts @@ -0,0 +1,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; -- cgit v1.2.3