@ice/pkg-plugin-mf
v1.0.0-alpha.0
Published
ICE PKG plugin for module federation
Downloads
46
Keywords
Readme
@ice/pkg-plugin-mf
ICE PKG plugin for Module Federation builds.
Usage
npm i @ice/pkg-plugin-mf -D// build.config.mts
import { defineConfig } from '@ice/pkg';
import { mf } from '@ice/pkg-plugin-mf';
export default defineConfig({
pkgs: [
{
module: 'mf',
target: 'es2017',
plugins: [
mf({
name: 'my_remote',
exposes: {
'.': './src/index.ts',
'./Counter': './src/Counter.tsx',
},
getPublicPath: 'return "http://localhost:4444/"',
shared: {},
}),
],
},
],
});More: https://pkg.ice.work/guide/mf
