feat: add root redirect to /app endpoint

This commit is contained in:
ramvignesh-b
2026-05-11 13:42:22 +05:30
parent 637c38f195
commit f5b0d5a555
+2
View File
@@ -12,6 +12,8 @@ const app = new Hono({ strict: false });
app.use("*", logger());
app.use("*", prettyJSON());
app.get("/", (c) => c.redirect("/app"));
app.route("/auth", authRoutes);
app.route("/api/config", configRoutes);
app.route("/api", apiRoutes);