Default port 4000

This commit is contained in:
2026-07-10 14:52:49 +03:30
parent 0020f95a61
commit 83f8db336e
+1 -1
View File
@@ -37,6 +37,6 @@ async function bootstrap() {
app.enableCors();
}
await app.listen(process.env.PORT ?? 3000);
await app.listen(process.env.PORT ?? 4000);
}
bootstrap();