We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nest.js version에 따라 아래 부분들에서
import { CacheModule } from '@nestjs/common' import { CACHE_MANAGER } from '@nestjs/common'
deprecated가 뜨는 것을 확인할 수 있는데
@nestjs/cache-manager 모듈 설치 후 각각 아래와 같이 넣어주면 해결이 가능하다.
import { CacheModule } from '@nestjs/cache-manager' import { CACHE_MANAGER } from '@nestjs/cache-manager'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Nest.js version에 따라 아래 부분들에서
deprecated가 뜨는 것을 확인할 수 있는데
@nestjs/cache-manager 모듈 설치 후 각각 아래와 같이 넣어주면 해결이 가능하다.
The text was updated successfully, but these errors were encountered: