typescript 模块“@azure/msal-angular”没有导出的成员“MSAL_CONFIG”

cgfeq70w  于 2023-06-24  发布在  TypeScript
关注(0)|答案(1)|浏览(160)

我有一个Angular 11项目,我试图在app.module中导入MSAL_CONFIG,但我只得到上面的错误。

import { MsalBroadcastService, MSAL_CONFIG, MsalGuard, MsalGuardConfiguration, MsalInterceptor, MsalInterceptorConfiguration, MsalModule,

所有其他类都正确导入。这是为什么呢?
在package.jxon中,我使用“@azure/msal-angular”:“^2.0.0”,“@azure/msal-browser”:“^2.16.1”,

njthzxwz

njthzxwz1#

从app.module.ts中删除所有MSAL_CONFIG References,如果需要,添加guard和/或interceptors配置(MSAL_GUARD_CONFIG和MSAL_INTERCEPTOR_CONFIG)。这是angular 11使用其文档的一个很好的例子。https://github.com/AzureAD/microsoft-authentication-library-for-js/blob/dev/samples/msal-angular-v2-samples/angular11-sample-app/src/app/app.module.ts
编辑:最近的Angular 15示例链接。https://github.com/AzureAD/microsoft-authentication-library-for-js/blob/dev/samples/msal-angular-v3-samples/angular15-sample-app/src/app/app.module.ts

相关问题