- import { NestFactory } from '@nestjs/core';
- import { AppModule } from './app.module';
- async function bootstrap() {
- const app = await NestFactory.create(AppModule);
- app.enableCors(); // Allow requests from frontend
- await app.listen(process.env.PORT ?? 3000);
- }
- bootstrap();
|