We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a29a143 commit 0ab76b6Copy full SHA for 0ab76b6
1 file changed
src/bin/helpers/getOptionsFromWebpackConfig.ts
@@ -24,8 +24,8 @@ export function getOptionsFromWebpackConfig(webpackConfigPath: string) {
24
}
25
26
function getModuleFederationPluginOptions(config: Compiler['options']) {
27
- const plugin = config.plugins.find(
28
- nextPlugin => /^_?ModuleFederationPlugin$/.test(nextPlugin!.constructor.name),
+ const plugin = config.plugins.find(nextPlugin =>
+ /^_?ModuleFederationPlugin$/.test(nextPlugin!.constructor.name),
29
);
30
return (plugin as Dict)?._options as Dict & { remotes?: Dict<string> };
31
0 commit comments