Skip to content

Instantly share code, notes, and snippets.

@neenhouse
Last active June 10, 2020 03:45
Show Gist options
  • Save neenhouse/b34505e388ae775c7221a18df5a8209f to your computer and use it in GitHub Desktop.
Save neenhouse/b34505e388ae775c7221a18df5a8209f to your computer and use it in GitHub Desktop.
Federated AppShell
module.exports = {
// ...
plugins: [
new ModuleFederationPlugin({
name: "appshell",
library: { type: "var", name: "appshell" },
filename: "remoteEntry.js",
remotes: {},
exposes: {
"./StandardLayout": "./src/StandardLayout"
},
shared: ["react", "react-dom", "react-router-dom"]
})
],
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment