vincenteof

Results 4 comments of vincenteof

子应用配置 mf 以后,只需要把用到 remote 的逻辑放在异步边界里就行了,其余的逻辑可以不用改,也可以不用开 topLevelAwait。 ```javascript import '../public-path' async function bootstrapWithoutQiankun() { if (!window.__POWERED_BY_QIANKUN__) { const { render } = await import('./bootstrap') render({}) } } bootstrapWithoutQiankun() const umountHandlerRef: {...

> 我这边遇到一个问题。主子应用中引入同一个远程模块A,远程模块A引入了远程模块B > > 报:Uncaught (in promise) Error: Container initialization failed as it has already been initialized with a different share scope same here

I am curious as to why @PiotrJustyna's Pull Request has not been merged yet. The official version does not function properly on my M2 Mac, while his version does. I...

在子应用上挂的脚本只能在子应用的 window 里访问到,在基座挂的脚本基座和子应用的 window 都能访问