change default port

This commit is contained in:
StarAppeal
2024-12-07 19:29:22 +01:00
parent a515495f61
commit 8dd5e3380c
+1 -1
View File
@@ -34,7 +34,7 @@ app.all(
build: SERVER_BUILD_DIR,
})
);
const port = process.env.PORT || 3000;
const port = process.env.PORT || 9090;
app.listen(port, () => {
console.log(`Express server listening on port ${port}`);