main.ts 280 B

123456789
  1. import { NestFactory } from '@nestjs/core';
  2. import { AppModule } from './app.module';
  3. async function bootstrap() {
  4. const app = await NestFactory.create(AppModule);
  5. app.enableCors(); // Allow requests from frontend
  6. await app.listen(process.env.PORT ?? 3000);
  7. }
  8. bootstrap();