summaryrefslogtreecommitdiff
path: root/app/routes.ts
diff options
context:
space:
mode:
Diffstat (limited to 'app/routes.ts')
-rw-r--r--app/routes.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/routes.ts b/app/routes.ts
index e839849..8ca1209 100644
--- a/app/routes.ts
+++ b/app/routes.ts
@@ -3,4 +3,7 @@ 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;