main.ts
301 Bytes
import { NestFactory } from '@nestjs/core';
import { AppModule } from './modules/app/app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
// app.enableCors({ origin: String(process.env.ALLOWED_ORIGINS).split(',') });
await app.listen(3000);
}
bootstrap();