this question is about micro frontend architecture for angular apps with webpack module federation plugin:
In this case :
when remote app and shell app angular versions are different (for example shell is 13 and remote is 14), I have a problem
the problem is :
I can display the remote app in the shell ...
but some things are not displayed in the shell, like directives (even built-in directives) and in the browser console, I got this error
Can't bind to 'ngIf' since it isn't a known property of 'h1'
but when I serve and run the remote app alone (not in the shell), directives worked without any problem
What should I do?
Do you have any experience?
project link :