Making Use of Lazy Loading
Let's explore how we can make use of lazy loading for optimizing our application for production.
We'll cover the following...
Another way performance can be improved is through the use of lazy loading within our application. Back in NgModules chapter, we introduced you to the concept of modules in Angular. This is how our application is structured using a module. This contains all the Components, Services, Templates, and other files that are needed for a section.
Implement lazy loading
Through modules, we can ...