我想在导入时使用服务
ConfigService
来配置JWTModule
@Module({
imports: [
JwtModule.register({
// <--------- here
signOptions: { expiresIn: this.configService.get('jwt.expiresIn') },
}),
],
})
export class AuthModule {
constructor(private configService: ConfigService) {}
}
使用该动态模块的异步版本
JwtModule.registerAsync({ ... })