What is the process for loading assets in an Angular app? Will the app wait for all assets to load before bootstrapping, or will they be lazy loaded if not needed on the initial page?
I have a large number of PDFs stored in the assets folder that I load as needed. I am now concerned about performance and considering uploading all the PDFs to the cloud instead of loading them from the assets folder. Would this lead to a faster initial load time for the app?