We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfbab8d commit 1a5e2d9Copy full SHA for 1a5e2d9
src/main.ts
@@ -3,9 +3,7 @@ import * as cookieParser from 'cookie-parser';
3
import { AppModule } from './app/app.module';
4
5
async function bootstrap() {
6
- const app = await NestFactory.create(AppModule, {
7
- logger: ['error', 'warn', 'log', 'verbose', 'debug'],
8
- });
+ const app = await NestFactory.create(AppModule);
9
app.use(cookieParser());
10
11
await app.listen(3000);
0 commit comments