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
현재 레포에서 사용하고 있는 @nestjs/config 모듈의 ConfigService는 다음과 같이 config를 가져오게 됩니다.
@nestjs/config
ConfigService
this.configService.get<TReturn>('some.config');
이때 'some.config' 부분이 틀릴 경우 원하는 결과가 나오지 않을 수도 있습니다. 따라서 좀 더 타입 세이프하게 사용할 수 있도록 수정해야 합니다.
'some.config'
The text was updated successfully, but these errors were encountered:
Coalery
No branches or pull requests
현재 레포에서 사용하고 있는
@nestjs/config
모듈의ConfigService
는 다음과 같이 config를 가져오게 됩니다.이때
'some.config'
부분이 틀릴 경우 원하는 결과가 나오지 않을 수도 있습니다. 따라서 좀 더 타입 세이프하게 사용할 수 있도록 수정해야 합니다.The text was updated successfully, but these errors were encountered: