Nestjs Config access to config in bootstrap level
问题 According to this documentation you import your config in AppModule. I'm trying to access to config in bootstrap level in my main.ts file. Something like this: const app = await NestFactory.create(AppModule); if (config.get('swagger.enabled')) { initSwagger(app); } await app.listen(8080); The problem that I don't have access to config in this point, only other moudle will get access to config like this: @Injectable() export class SomeService { constructor(private readonly httpService: