Skip to content

Commit

Permalink
Update default port to 3000
Browse files Browse the repository at this point in the history
  • Loading branch information
dvque committed Feb 3, 2024
1 parent 812f8c8 commit 1f19327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/index.ts
Original file line number Diff line number Diff line change
@@ -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()

Expand Down

0 comments on commit 1f19327

Please sign in to comment.