前端工程化:模块联邦与微前端落地

模块联邦允许在运行时共享依赖并按需加载远程组件,减少重复打包。

// webpack Module Federation 样例(简化)
new ModuleFederationPlugin({
  name: 'host',
  remotes: { remote: 'remote@https://cdn.example.com/remoteEntry.js' },
  shared: { react: { singleton: true, requiredVersion: '^18' } }
});