I have a Angular 7 project which is deployed at server X. Basically, this App is a Container Type Application which should load other Angular Modules.
Server side Angular project doesn't have the children Module related definition/information except the cdn url of the angular module to be loaded.
I've tried multiple approaches to achieve this
--> Bundled the Children Module files as SystemJs Modules and tried to import it in the Parent Module using System.import
and SystemNgModuleLoader
too
--> Exported the Children Modules as UMD and tried to execute it on the Parent Module, then tried loading using the System
however i wasn't able to achieve the said functionality.
Is there any way i can achieve this?