blob: 85872c914b9ce50e64b709c1b983cf5e18ebc8c5 [file] [log] [blame]
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule, {
logger: ['error', 'warn'],
});
await app.listen(3000);
}
bootstrap();