I just learned about preloading feature modules in Angular via adding this line inside the RootModules.forChild()
method inside imports in your root module.ts file:
preloadingStrategy: PreloadAllModules
It seems to speed up my application! I am just wondering if there are any downsides to this or reasons why you would choose not to preload features modules.