Ok, so I want to publish my prebuilt angular module on some cdn, and then let some angular route be able to point to it and have it loaded.
I haven\'t stepped the an
Give a link to your module in the SystemJS config file:
'myModule': 'https://rawgit.com/ghstahl/angular4-goo-module/master/dist/bundles/goo.umd.js'
Then, you can load it like:
loadChildren: "myModule#GooModule"
See the plunk that illustrates this.