main.ts
370 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(',') });
console.log({"port": process.env.MAIN_PORT})
await app.listen(Number(process.env.MAIN_PORT));
}
bootstrap();