From 1f193273798469f37bdc96d223e21288a1b216f5 Mon Sep 17 00:00:00 2001 From: David Q Date: Sat, 3 Feb 2024 11:06:11 +0100 Subject: [PATCH] Update default port to 3000 --- src/api/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/index.ts b/src/api/index.ts index 5743393..844091f 100644 --- a/src/api/index.ts +++ b/src/api/index.ts @@ -1,7 +1,7 @@ import { Hono } from "hono"; import { fetchUserProfile } from "../lib/fetch"; -const port = +(Bun.env.PORT || 1234); +const port = +(Bun.env.PORT || 3000); const app = new Hono()