Trần Viết Sơn
fix: refactor, add entities
c114c72
raw
history blame
227 Bytes
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module.js';
async function bootstrap() {
const app = await NestFactory.create(AppModule, { cors: true });
await app.listen(3000);
}
bootstrap();