我试图为@auth0/angular-jwt项目安装angular9。
module.ts
imports: [
HttpClientModule,
BrowserAnimationsModule,
JwtModule.forRoot({
config: {
tokenGetter: tokenGetter,
allowedDomains: ["example.com"],
disallowedRoutes: ["http://example.com/examplebadroute/"],
},
}),
]但是,当运行程序时,它会给出以下错误在这里输入图像描述
发布于 2022-12-04 18:43:20
请快速查看@auth0/站点:
Supported Angular versions
This project only supports the actively supported versions of Angular as stated in the Angular documentation. Whilst other versions might be compatible they are not actively supported角的活动版本为13及以上:https://angular.io/guide/releases#actively-supported-versions
https://stackoverflow.com/questions/74679113
复制相似问题