When would assets get loaded in Angular app? Will app wait for all assets to be loaded before starting to bootstrap, or those will be lazy loaded if they are not required on initial page.
I have a lot of PDFs that I put in assets folder and load them when required. Now, I am concern about the performance, and I was thinking to upload all PDFs to cloud and instead of loading them from assets I would load them from cloud. Would that make app initial load faster?