diff --git a/src/index.ts b/src/index.ts index c2a3d82..13b6a6d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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);