From f48a776fb5bb00de21b8e990269151a4156def73 Mon Sep 17 00:00:00 2001 From: Minh-TRANCao_keyloop Date: Wed, 1 Oct 2025 05:04:54 +0000 Subject: [PATCH] chore: Add void to mark bootstrap Promise as intentionally not awaited --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 13cad38cf..23f3240c2 100644 --- a/src/main.ts +++ b/src/main.ts @@ -5,4 +5,4 @@ async function bootstrap() { const app = await NestFactory.create(AppModule); await app.listen(3000); } -bootstrap(); +void bootstrap();