How can I setup a module federation for my project, I have a React Vite app as host and CRA remote app. Do you know an easy setup, do I need to use craco in remote ?I installed craco, and had this is ...
I'm using Nx to create micro frontends in Angular and so far my folder structure looks like this (a lot of files have been omitted for clarity):apps - host - bank - libs - invoice - ...
I am trying to use Module Federation to load a remote component. I can see that SharedComponentRole has a correct value, however on calling container.createComponent I get the following error:...
I am using NX Angular microfrontend application. @nx/angular: 20.8.0, Angular: 19.28I am trying to use pptxgenjs: 4.0.1 in my application. During build I am getting following error:node:fs - Error: ...
I'm a newbie to Next.js and module federation, and I'm working on an exercise (let's call it that) where I have a web component bundled with Webpack 5 in a federated module, and I want to import it ...
console error imageCreate an Module Federation monorepo React projects using the Nx CLI - npx nxg @nx/react:host apps/erp--remotes=hr,pm,crminstalled nx-electron using nx g nx-electron:app ...
I'm building a prototype to test Server-Side Rendering (SSR) with Webpack Module Federation (WMF) in our large app. I have two apps:App 1 – Remote App (React + Webpack)Basic Button1 component:const ...
I try to split my angular 20 monolith and seperate my blogs from my main app. I set up everything but whatever I do, as soon as the remote gets fetched my application keeps on refreshing infinitely. ...
I am trying to run a React microfrontend application using Webpack Module Federation. The container app (container-app) loads remote apps (mfe-dashboard, mfe-portfolio) dynamically using promise new ...
I'm working with Webpack Module Federation and React, and I’m running into an issue where AG Grid's CSS gets removed from the DOM when its component (inside an Ant Design Drawer) is unmounted.🔧 ...
I'm building a micro-frontend architecture using Webpack Module Federation. I have a host app and a remote app (cart), and I'm trying to share a global Zustand store (themeStore) from the host to the ...
In a standard Module federation setting, the remote project exposes a bunch of modules and these modules are consumed in the host project.Example:Remote project config:exposes: { './home-...
We have migrated our Angular applications into Microfrontends using Dynamic Module Federation (with @angular-architects/module-federation).In each remote application, I imported a styles.css into app....
I've been trying to have a React app using Vite acting as a microfrontend in an Angular shell / host using Native Federation (also tried using Module Federation). After some time searching, I managed ...
I have this structure which every feature will be treated as a mini app, they will be bundle as separated scripts (based on vite-feature.config) to ready for load as needed on an external app.They ...