moduleFederation.options
- Type: Rspack.ModuleFederationPluginOptions
- Default:
undefined
Used to configure the Rspack's Module Federation plugin (Module Federation v1.5).
There are several versions of Module Federation implementations. Before using moduleFederation.options, please read the Module Federation guide to understand the differences between different versions and how to make choices.
Introduction
When using Module Federation, it is recommended that you use the moduleFederation.options option provided by Rsbuild. This option will automatically adjust some related configurations to ensure that the module federation application can run correctly.
When you set the moduleFederation.options option, Rsbuild will take the following actions:
- Automatically register the ModuleFederationPlugin plugin, and pass the value of
optionsto the plugin. - Set the default value of the provider's dev.assetPrefix configuration to
true. This will ensure that the static asset URL is correct for remote modules. - Set the default value of Rspack's output.uniqueName configuration to
moduleFederation.options.name, this allows HMR to work as expected. - Turn off the
split-by-experiencerules in Rsbuild's performance.chunkSplit as it may conflict with shared modules, refer to #3161.
Usage
The type of moduleFederation.options is exactly the same as the ModuleFederationPlugin plugin of Rspack:
Please refer to the ModuleFederationPlugin document for all available options.
Example
Here is a minimal example:
- Remote App
- Host App
For more examples, please see:

