webpack/test/configCases/container/module-federation/webpack.config.js

20 lines
409 B
JavaScript
Raw Normal View History

2020-04-04 07:13:16 +08:00
const ModuleFederationPlugin = require("../../../../lib/container/ModuleFederationPlugin");
module.exports = {
externalsType: "system",
plugins: [
new ModuleFederationPlugin({
name: "container",
library: { type: "commonjs-module" },
filename: "container.js",
exposes: {
ComponentA: "./ComponentA"
},
remotes: {
containerA: "./container.js"
},
shared: ["react"]
})
]
};