I am getting this error message :ScriptExternalLoadError: Loading script failed.
(missing: http://localhost:3005/remoteEntry.js).
when trying to load a remote app from the container app in development.
I have this optimization (when I put them in comment everything works) :
optimization:{
runtimeChunk: 'single',
splitChunks: {
chunks: 'all',
cacheGroups: {
vendor: {
test: /[\\/]node_modules[\\/]/,
name: module => (module.context.match(/[\\/]node_modules[\\/](.*?)([\\/]|$)/) || [])[1]
}
}
},