main.ts 234 B

12345678910
  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()
  6. await app.listen(3000, '0.0.0.0')
  7. }
  8. bootstrap()