I'm trying to better understand Webpack and MFE in general. I have built a react container with 2 react modules. It works very well so far. I haven't finished implementing all the routing, but every time I write something in the URL like:
http://localhost:4230/trainees/add
The browser tries to search for new resources: 
here is my MFE configuration:
new ModuleFederationPlugin( {
name : 'container',
remotes : {
trainer : 'trainer@http://localhost:4230/remoteEntry.js',
trainee : 'trainee@http://localhost:4220/remoteEntry.js'
},
shared: ['react', 'react-dom', {
'react-router-dom': {
singleton: true
}
}],
})
If I try to go to the same URL using <Nav> the code, it works...
Is it normal behavior?
Thank you