Skip to main content

All Questions

0 votes
0 answers
23 views

Micro frontend - Material UI library duplicate imports webpack

I am implementing the microfrontend architecture, My main app and mf1 app uses material ui, the material ui library are imported multiple times, even after specifying the singleton property. which is ...
user25628586's user avatar
0 votes
1 answer
36 views

Material-Table is not displayed in the host React app

I'm trying to implementing Module Federation for my web app. I'm using React Vite. I tried to call <IdentificationCard /> component inside remote app from host app but it didn't showed up. I use ...
Naim Roslan's user avatar
0 votes
0 answers
55 views

Isolating styles within Microfrontend app using StylesProvider

I have a Microfrontend app (using Module Federation) with 1 Host and a couple of child MFEs I am trying to isolate the styles between Host and also the child MFEs So in my Host App.js, I have the ...
copenndthagen's user avatar
0 votes
1 answer
368 views

Microfrontend Fixing Conflicting styles issue

I am having a Microfrontend application, which internally uses Material UI dependency (at the Host and Child MFE). I am running into a CSS conflict issue where in the problem occurs if the order of ...
copenndthagen's user avatar
1 vote
1 answer
425 views

Module Federation with multiple react versions and css isolation

I have a module federation remote repository that is: built using react 17 material-ui 4 including jss has its own global css from 3rd party libraries that I cannot edit I have multiple hosts that ...
qaismakani's user avatar
10 votes
2 answers
4k views

How do I share a MUI 5 theme across multiple Micro front ends using Module Federation

I currently have multiple React v17 apps which utilise Module Federation from Webpack 5. I would like for my MUI 5 theme to be shared across all of these micro frontends without having a there own ...
Kitson88's user avatar
  • 2,932
0 votes
2 answers
3k views

Unable to import a component using material-ui via webpack module federation

A simple POC where we have a react app host_ui as host and material_components as a remote. material_ui exposes a component NavBar. import React from 'react'; import AppBar from '@material-ui/core/...
rkpattnaik780's user avatar