main.ts 228 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 import { NestFactory } from '@nestjs/core'; import { AppModule } from './app.module'; async function bootstrap() { const app = await NestFactory.create(AppModule); app.enableCors(); await app.listen(4000); } bootstrap();