I have an angular application which has all kinds of dependencies like modules and styles.
On the other hand, I have multiple websites where I want to include this application with all dependencies (Like you have in an iFrame). I want to include the app in a div (as if it's an iframe) but I it must be a div, no iFrame, so those other sites can choose their own style for the inline application.
That way I can let every site include the app when I add it to my CORS. Like:
<div ng-include="app_from_other_domain"></div>
With all the routing inside that div.
I don't know where to start from here after reading much documentation. Any help would be appreciated!