I have an issue using angular and webpack. My project is composed of multiples views with controllers.
For example, I have a view userSummary.tmpl.html
which load the list of all users. I would like to reuse this template in another groupSummary.tmpl.html
which display all users too.
I can't use ng-include because all my views are contained in a bundle.js, nothing else. I would like to use WebPack to include my views directly in another.
Is that possible?