From 1c8bcdcfc2f73909c2ed7529b0f5151302e354ac Mon Sep 17 00:00:00 2001 From: chegele Date: Tue, 14 Nov 2023 16:16:25 -0500 Subject: [PATCH] Change pot to prevent conflict with spark plugin --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 13cad38..7d4c162 100644 --- a/src/main.ts +++ b/src/main.ts @@ -3,6 +3,6 @@ import { AppModule } from './app.module'; async function bootstrap() { const app = await NestFactory.create(AppModule); - await app.listen(3000); + await app.listen(3001); } bootstrap();