1
1
const { registerPluginTSTranspiler } = require ( 'nx/src/utils/nx-plugin.js' ) ;
2
2
3
3
registerPluginTSTranspiler ( ) ;
4
- const { withModuleFederation } = require ( '@nx/react/module-federation' ) ;
5
- const { FederatedTypesPlugin } = require ( '@module-federation/typescript' ) ;
6
4
const { ModuleFederationPlugin } = require ( '@module-federation/enhanced' ) ;
7
5
const { composePlugins, withNx } = require ( '@nx/webpack' ) ;
8
6
const { withReact } = require ( '@nx/react' ) ;
7
+ process . env . FEDERATION_DEBUG = true ;
9
8
10
9
module . exports = composePlugins (
11
10
withNx ( ) ,
12
11
withReact ( ) ,
13
12
async ( config , context ) => {
13
+ // prevent cyclic updates
14
+ config . watchOptions = {
15
+ ignored : [ '**/node_modules/**' , '**/@mf-types/**' ] ,
16
+ } ;
14
17
const baseConfig = {
15
18
name : 'react_ts_host' ,
16
19
filename : 'remoteEntry.js' ,
17
20
remotes : {
18
- react_ts_remote : 'react_ts_remote@http://localhost:3004/remoteEntry.js' ,
21
+ react_ts_nested_remote :
22
+ // 'react_ts_nested_remote@http://localhost:3005/remoteEntry.js',
23
+ 'react_ts_nested_remote@http://localhost:3005/mf-manifest.json' ,
19
24
} ,
20
25
} ;
21
26
config . plugins . push ( new ModuleFederationPlugin ( baseConfig ) ) ;
22
27
23
- config . plugins . push (
24
- new FederatedTypesPlugin ( {
25
- federationConfig : {
26
- ...baseConfig ,
27
- filename : 'remoteEntry.js' ,
28
- } ,
29
- } ) ,
30
- ) ;
31
-
32
28
config . optimization . runtimeChunk = false ;
33
29
config . plugins . forEach ( ( p ) => {
34
30
if ( p . constructor . name === 'ModuleFederationPlugin' ) {
@@ -50,50 +46,6 @@ module.exports = composePlugins(
50
46
runtimeChunk : false ,
51
47
minimize : false ,
52
48
} ;
53
- // const mf = await withModuleFederation(defaultConfig);
54
49
return config ;
55
-
56
- // const mf = await withModuleFederation(defaultConfig);
57
-
58
- // /** @type {import('webpack').Configuration } */
59
- // const parsedConfig = mf(config, context);
60
-
61
- // const remotes = baseConfig.remotes.reduce((remotes, remote) => {
62
- // const [name, url] = remote;
63
- // remotes[name] = url;
64
- // return remotes;
65
- // }, {});
66
-
67
- // parsedConfig.plugins.forEach((plugin) => {
68
- // if (plugin.constructor.name === 'ModuleFederationPlugin') {
69
- // //Temporary workaround - https://github.com/nrwl/nx/issues/16983
70
- // plugin._options.library = undefined;
71
- // }
72
- // });
73
-
74
- // parsedConfig.plugins.push(
75
- // new FederatedTypesPlugin({
76
- // federationConfig: {
77
- // ...baseConfig,
78
- // filename: 'remoteEntry.js',
79
- // remotes,
80
- // },
81
- // }),
82
- // );
83
-
84
- // parsedConfig.infrastructureLogging = {
85
- // level: 'verbose',
86
- // colors: true,
87
- // };
88
-
89
- // //Temporary workaround - https://github.com/nrwl/nx/issues/16983
90
- // parsedConfig.experiments = { outputModule: false };
91
-
92
- // parsedConfig.output = {
93
- // ...parsedConfig.output,
94
- // scriptType: 'text/javascript',
95
- // };
96
-
97
- // return parsedConfig;
98
50
} ,
99
51
) ;
0 commit comments