main.ts
322 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(Number(process.env.API_PORT));
}
bootstrap();