From c194ca1495e11232e9f2819a0afc842babd589b2 Mon Sep 17 00:00:00 2001 From: smfahim25 Date: Wed, 19 Mar 2025 09:50:44 +0600 Subject: [PATCH] update 00000 --- src/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.ts b/src/app.ts index 98e2661..fea57a8 100644 --- a/src/app.ts +++ b/src/app.ts @@ -62,6 +62,6 @@ const app = new Elysia({ // all routes here app.use(api); -app.listen(ENV.SERVER_PORT, "0.0.0.0", () => { +app.listen({ host: "0.0.0.0", port: ENV.SERVER_PORT }, () => { console.log(`🦊 Elysia is running at ${ENV.SERVER_URL}:${ENV.SERVER_PORT}`); });