Open in Web IDE
Quickly and easily edit multiple files in your project.
Edit
Edit this file only.
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(5000);
}
bootstrap();