Requirement: To prefetch the remote modules(module federated) during browser idle time in react.
I've tried webpack magic comment webpackPrefetch: true but that did not work with module federation. I came across the post which says webpack magic comments do no work with module federation. Is there any library or any workaround to prefetch the remote modules during browser idle time
I've also tried npm libraries like @loadable/component which preloads the remote modules, but this is not during the idle time of browser. I am looking for something that does same thing as webpackPrefetch: true for module federation.