DEV Community

Discussion on: Building Micro Frontends with React, Vue, and Single-spa

Collapse
 
taviroquai profile image
Marco Afonso

I agree. I don't see this example as independent frontends because ate the end of the day, they are all bundled together. If you make a change in the react frontend, you have to rebuild all together. Doesn't make to much sense.

Collapse
 
grahamsutton profile image
Graham Sutton

This is probably more a trade-off than anything. It seems like the choice is between a) rebuild everything together which de-duplicates dependencies but you lose the ability to release independently or b) build and release everything separately but risk having duplicate dependencies across all bundles.