module-federation-examples
module-federation-examples copied to clipboard
Implementation examples of module federation , by the creators of module federation
Hi @ScriptedAlchemy i have integrated a remote app with my host app using module federation both remote and host app is on react. i am using mini-css-extract-plugin for the css....
MFE1: ``` module.exports = withModuleFederationPlugin({ name: 'mfe3', exposes: { './web-components': './projects/mfe3/src/bootstrap.ts', './HomeCmp': './projects/mfe3/src/app/home/home.component.ts', }, shared: { ...shareAll({ singleton: true, strictVersion: true, requiredVersion: 'auto' }), }, }); ``` App Module in...
Is the React-18-ssr architecture intended to adapt to changing upstream remoteEntry.js files? I tried this architecture and when my upstream app reloaded, I had trouble refreshing the SSR application to...
Hi, We have just started with micro frontend implementation and have followed the steps mentioned in [this](https://medium.com/ama-tech-blog/mastering-microfrontends-routing-and-communication-815f3a7b7910 ) article. I also went through some other resources and all suggested the...
The question I have is regarding SSR. I'm trying to implement my application as shown below. https://github.com/module-federation/module-federation-examples/tree/master/nextjs-ssr In these examples, we have imported the pages from other MFEs to create...
Hey, I have been struggling importing my remote MUI theme into my next js application for a while now. I managed to import it on the client side but this...
I'm having issues restricting versions of shared libraries between two Micro Frontends (MFEs). In theory, the shell, with requiredVersion, should condition certain versions for the module to avoid incompatibility. However,...
Updating Angular version 10 to 15 for the `angular-universal-ssr` example; Both the `host` and `client` apps have been updated;