DEV Community

Discussion on: Preload All Angular Bundles

Collapse
 
sevenstories profile image
Joe Wheatley

The best trade off I've found is if the modules are all locked by user role/permissions and make the preload strategy check permissions. If the user doesn't have permission it doesn't load. We have a rather large application at work, there's around 15 lazy loaded modules, but each user role will only ever have access to around 5

Collapse
 
john_papa profile image
John Papa

Thanks for sharing.

Could you combine that with CanLoad? Possibly don’t even let it get to a strategy for preloading if they don’t have permission

Maybe a combo of both.