Change pot to prevent conflict with spark plugin

This commit is contained in:
chegele 2023-11-14 16:16:25 -05:00
parent f407c42087
commit 1c8bcdcfc2
1 changed files with 1 additions and 1 deletions

View File

@ -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();