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
Filename should evaluate to this.config.filename, but instead it evaluates to name.container.bundle whenever this.config.exposes is present, which is clearly an order of operations issue.
When using ModuleFederation, ScriptManager's resolver use .container.bundle as a way to differentiate other chunks from container chunks. Therefore before fixing this issue, we need to find a way to differentiate them differently.
The text was updated successfully, but these errors were encountered:
Description
Inside of ModuleFederationPlugin we have this piece of code:
Filename should evaluate to this.config.filename, but instead it evaluates to
name.container.bundle
whenever this.config.exposes is present, which is clearly an order of operations issue.When using ModuleFederation, ScriptManager's resolver use
.container.bundle
as a way to differentiate other chunks from container chunks. Therefore before fixing this issue, we need to find a way to differentiate them differently.The text was updated successfully, but these errors were encountered: