Circular Dependency with Custom Logger and Module in NestJS
Im getting a Circular Dependency error with a Module (UsersModule) and a Custom Logger (did it following this section of the documentation).
Circular Dependency with Custom Logger and Module in NestJS
Im getting a Circular Dependency error with a Module (UsersModule) and a Custom Logger (did it following this section of the documentation).
Circular Dependency with Custom Logger and Module in NestJS
Im getting a Circular Dependency error with a Module (UsersModule) and a Custom Logger (did it following this section of the documentation).
How to extend ConfigService and make it global?
I want to make several simple methods for ConfigService like getPort()
so I try to extend:
NestJS: How extend ConfigService and make it global?
I want to make several simple methods for ConfigService like getPort()
so I try to extend:
Why doesn’t it work normally if I import a ConfigModule with isGlobal:true from another module in NestJS?
I would like to know why there is a difference between explicitly importing a ConfigModule set with the isGlobal:true option from app.module.ts through import to another module (auth.module.ts) and importing it without specifying it in the import.