Error: Module "./menu-items" does not exist in container
Error: Module "./menu-items" does not exist in container
'provider' 的 Webpack 配置:
new ModuleFederationPlugin({
...
remotes: {
...
},
exposes: {
"./api-helpers": "./src/api-helpers",
"./menu-items": "./src/menu-items",
},
shared: {
...
},
我在消费者那里得到这个:
这与menu-items
中的嬉皮士有关吗?
我的消费者遥控器配置不正确:
'store': 'store@http://localhost:4019/remoteEntry.js',
'api-helpers': 'store@http://localhost:4002/remoteEntry.js'
将第二行更改为以下内容修复了问题。
'api-helpers': 'api-helpers@http://localhost:4002/remoteEntry.js'
'provider' 的 Webpack 配置:
new ModuleFederationPlugin({
...
remotes: {
...
},
exposes: {
"./api-helpers": "./src/api-helpers",
"./menu-items": "./src/menu-items",
},
shared: {
...
},
我在消费者那里得到这个:
这与menu-items
中的嬉皮士有关吗?
我的消费者遥控器配置不正确:
'store': 'store@http://localhost:4019/remoteEntry.js',
'api-helpers': 'store@http://localhost:4002/remoteEntry.js'
将第二行更改为以下内容修复了问题。
'api-helpers': 'api-helpers@http://localhost:4002/remoteEntry.js'