How to rebuild MFE frontend app after push a new commit

I created a plugin to fork a frontend app to my MFE.

Then, I ran:

tutor images build mfe
tutor local launch

And I can see my site take the effect successfully. After a few changes, I push it to my reporitory I forked in the plugin file. I ran 2 commands above again, but this time, it’s still render my old component instead of my changes.

Can somboby give me some instructions. Thank you…

Try running tutor images build mfe --no-cache.

https://docs.tutor.edly.io/reference/cli/images.html#cmdoption-tutor-images-build-no-cache

docker may be caching the existing changes.

2 Likes

Thank you so much. Yours is solution!