chore: update default server port from 3000 to 4000

This commit is contained in:
2026-04-22 23:14:15 -03:00
parent a6903afb07
commit 1d7a5e893f
+1 -1
View File
@@ -469,7 +469,7 @@ app.get('*', (req, res) => {
res.sendFile(join(DIST_PATH, 'index.html'));
});
const PORT = process.env.PORT || 3000;
const PORT = process.env.PORT || 4000;
const HOST = process.env.HOST || '0.0.0.0';
app.listen(Number(PORT), HOST, () => {
console.log(`Server running on http://${HOST}:${PORT}`);