单-SPA+ MSAL
我正在尝试了解如何使用MSAL实现微额定ARCH(单SPA JS)。
当我们在单SPA中注册应用程序时,应该将MSALBROWSER放入每个子路由中还是以道具发送?但是,这不会导致多个MSALBROWSER实例并造成麻烦吗?
I am trying to understand how can i implement microfrontend arch (single-spa js) with msal .
When we are registering Application in the single-spa , should we put the MSALBrowser inside each sub route or send as a prop ? but wont that make multiple MSALbrowser instance and cause trouble ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使MSAL成为共同的依赖性。要么将其放在微型前端之前的导入图中
,要么制作共享依赖项(文档)。
Make MSAL a shared dependency. Either put it in the imports map before your micro frontends
or make a shared dependencies (documentation).