From 21e87339b922967bf70de201cbc4f5979db8cdc9 Mon Sep 17 00:00:00 2001 From: Moritz Utcke Date: Sat, 22 Feb 2025 10:37:28 +1100 Subject: [PATCH] Port 3000 --- server.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server.ts b/server.ts index 2c56f4f3..f586d20b 100644 --- a/server.ts +++ b/server.ts @@ -9,6 +9,6 @@ app.use(ssrHandler); app.use(express.json({ limit: "50mb" })) app.use(express.urlencoded({ limit: "50mb" })) -app.listen(80, function() { - console.log('Server started on http://localhost:80'); +app.listen(3000, function() { + console.log('Server started on http://localhost:3000'); }); \ No newline at end of file