[Nest] 70879 - 07/31/2025, 3:43:42 PM ERROR [ExceptionHandler] UnknownDependenciesException [Error]: Nest can't resolve dependencies of the DiscoveryService (?). Please make sure that the argument ModulesContainer at index [0] is available in the DiscoveryModule context.
Potential solutions:
- Is DiscoveryModule a valid NestJS module?
- If ModulesContainer is a provider, is it part of the current DiscoveryModule?
- If ModulesContainer is exported from a separate @Module, is that module imported within DiscoveryModule?
@Module({
imports: [ /* the Module containing ModulesContainer */ ]
})