2021-11-11 13:12:33 +05:30

10 lines
243 B
TypeScript

import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
app.enableCors(); // Unable cors
await app.listen(3000);
}
bootstrap();