I am currently working on an angular application that has a lot of dependencies such as modules and styles.
However, I also have multiple websites where I would like to incorporate this application along with all the dependencies (similar to how it is done in an iFrame). The only difference is that I need to include the app in a div instead of an iFrame so that each website can customize the styling for the embedded application.
This will allow every site to include the app once I add it to my CORS. For example:
<div ng-include="app_from_other_domain"></div>
With all the routing functionality contained within that div.
Despite reading extensive documentation, I am unsure of where to begin with this task. Any assistance or guidance would be greatly appreciated!