port change

This commit is contained in:
2025-12-14 13:39:17 -06:00
parent e1ff581f0a
commit c10396c2b4
+1 -1
View File
@@ -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}`);