Iframe azure login is not working even though set *allowRedirectInIframe: true. Here my try.
MSALconfig
const msalConfig = {
auth: {
clientId: "e440b5e5-3c66-43c0-8ab5-31a747c2377e",
authority: "https://login.microsoftonline.com/common",
redirectUri: "http://localhost:4200/"
},
cache: {
cacheLocation: "sessionStorage",
storeAuthStateInCookie: false,
secureCookies: false,
},
system: {
allowRedirectInIframe: true,
},
telemetry: {
application: {
appName: "My Application",
appVersion: "1.0.0",
},
},
};
