I am needing to build a Microfrontend architecture with Module Federation and my applications will be build with Vue and Angular. Precisely I will build 2 apps in Angular and 1 in Vue. My problema is there I am stuck in how to configure the webpack to expose an entire page from Angular and use it in the Vue app. Is this possible or I should use an container app with no framework to do the job of merging the apps?
I started by configuring the Vue app as the main project and having a remote import from an Angular project. However I don't seem to be having any progress in use the components from the Angular app. In my tests I could easily use Vue components in another Vue project using Module Federation Plugin but I could't do the same with the Angular components. Is there any specific configurations for Angular components to be rendered by a Vue App?