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