You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to load the remote and then trying access the exposed module , here my host is main
when invoke loadRemote method the FederationInstance is not holding main instead it holds other remote that is previously loaded because of the condition in @module-federation/runtime's init method in line number 1684, since we declared the FederationInstance variable outside of the init and loadRemote method's scope, so it holding previous remote.
if i change the condition to if(FederationInstance !== instance) it's working as expected,