diff --git a/src/server.ts b/src/server.ts index 5866477..4711667 100644 --- a/src/server.ts +++ b/src/server.ts @@ -19,7 +19,7 @@ app.use('/*', serveStatic({ root: './public' })); // Fallback to index.html for SPA routing app.get('*', serveStatic({ path: './public/index.html' })); -const port = parseInt(process.env.PORT || '3000'); +const port = parseInt(process.env.PORT || '3050'); console.log(`🚀 Server running on http://localhost:${port}`);