From 90b698ad68ce83de9f4e92cce30ed8fcd0b22fdf Mon Sep 17 00:00:00 2001 From: Yuzu Date: Sun, 12 Jul 2026 18:17:49 +0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20use=20hostname=20instead?= =?UTF-8?q?=20of=20host=20in=20listen=20options?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 50b8299..d353f46 100644 --- a/src/index.ts +++ b/src/index.ts @@ -26,7 +26,7 @@ const app = new Elysia() return data; }) - .listen({ port: 3000, host: "0.0.0.0" }); + .listen({ port: 3000, hostname: "0.0.0.0" }); console.log("Listening on port 3000");