I reinstalled all the project dependencies due to some conflicts
but the ThrottlerGuard suddenly no longer works
here is the error message
server:dev: [Nest] 19932 - 10/11/2023, 5:49:52 PM ERROR [ExceptionHandler] Nest can't resolve dependencies of the ThrottlerGuard (THROTTLER:MODULE_OPTIONS, Symbol(ThrottlerStorage), ?). Please make sure that the argument Reflector at index [2] is available in the AppModule context.
server:dev:
server:dev: Potential solutions:
server:dev: - Is AppModule a valid NestJS module?
server:dev: - If Reflector is a provider, is it part of the current AppModule?
server:dev: - If Reflector is exported from a separate @Module, is that module imported within AppModule?
server:dev: @Module({
server:dev: imports: [ /* the Module containing Reflector */ ]
server:dev: })
server:dev:
server:dev: Error: Nest can't resolve dependencies of the ThrottlerGuard (THROTTLER:MODULE_OPTIONS, Symbol(ThrottlerStorage), ?). Please make sure that the argument Reflector at index [2] is available in the AppModule context.
server:dev:
server:dev: Potential solutions:
server:dev: - Is AppModule a valid NestJS module?
server:dev: - If Reflector is a provider, is it part of the current AppModule?
server:dev: - If Reflector is exported from a separate @Module, is that module imported within AppModule?
server:dev: @Module({
server:dev: imports: [ /* the Module containing Reflector */ ]
server:dev: })
I don't know what reflector he mean?