fix: typo in main ts
This commit is contained in:
+2
-2
@@ -27,8 +27,8 @@ async function bootstrap() {
|
|||||||
|
|
||||||
const PORT = configService.getOrThrow<number>("PORT");
|
const PORT = configService.getOrThrow<number>("PORT");
|
||||||
await app.listen(PORT, "0.0.0.0", () => {
|
await app.listen(PORT, "0.0.0.0", () => {
|
||||||
logger.log(`Server running on http://localhost:${PORT}`);
|
logger.log(`Server running at http://localhost:${PORT}`);
|
||||||
logger.log(`Swagger running on http://localhost:${PORT}/api-docs`);
|
logger.log(`Swagger is serving at http://localhost:${PORT}/api-docs`);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
bootstrap();
|
bootstrap();
|
||||||
|
|||||||
Reference in New Issue
Block a user