In separate project everything works fine, but in yarn workspaces all projects with RedisModule gives error
Expected Behavior
RedisModule should be initialized
Current Behavior
Error: Nest can't resolve dependencies of the RedisModule (?). Please make sure that the argument ModuleRef at index [0] is available in the RedisModule con
text.
Potential solutions:
Is RedisModule a valid NestJS module?
If ModuleRef is a provider, is it part of the current RedisModule?
If ModuleRef is exported from a separate @Module, is that module imported within RedisModule?
@Module({
imports: [ / the Module containing ModuleRef / ]
})
In separate project everything works fine, but in yarn workspaces all projects with RedisModule gives error
Expected Behavior
RedisModule should be initialized
Current Behavior
Error: Nest can't resolve dependencies of the RedisModule (?). Please make sure that the argument ModuleRef at index [0] is available in the RedisModule con text.
Potential solutions:
Steps to Reproduce (for bugs)
Here is my AppModule imports:
Your Environment