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 c5a60c4 commit f707813Copy full SHA for f707813
README.md
@@ -44,10 +44,9 @@ import { NestFactory } from '@nestjs/core';
44
import { AppModule } from './app.module';
45
46
async function bootstrap() {
47
- const app = await NestFactory.create(AppModule).then(
+ const app = await NestFactory.create(AppModule)
48
// Setup Context Wrappers Here
49
- configureContextWrappers(),
50
- );
+ .then(configureContextWrappers);
51
52
await app.listen(3000);
53
}
0 commit comments