我有一个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”,
1条答案
按热度按时间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