likes
comments
collection
share

模块联邦插件中几个name的用法和关联

作者站长头像
站长
· 阅读数 69
new ModuleFederationPlugin({
  name: 'my_name',
  filename: 'remoteEntry.js'
  remotes: {
    // multiple 是内部使用的名称
    // multiple_mf_v0_0_1 是外部模块的name,相当于这里的 my_name
    'multiple': 'multiple_mf_v0_0_1@//localhost:9001/remoteEntry.js'
  }
})

其中 my_name 是暴露出去的名字,外部要使用这个模块时要这要引入 'innner_name':my_name@//localhost:9002/remoteEntry.js 具体使用的地方

import { xxx } from 'innner_name'
转载自:https://segmentfault.com/a/1190000042422105
评论
请登录