Nov 04, 2020 . 4 Min ReadLazy load component with Angular 10
What is Lazy Loading?
Lazy loading (also called on-demand loading) is an optimisation technique for
the online content, be it a website or a web app.
* Instead of loading the entire web page and rendering it to the user in one go
as in bulk loading, the concept of lazy loading assists in loading only the
required section and delays the remaining, until it is needed by the user.
* By default, NgModules are eagerly loaded, which means that as soon as the app
loads, so do all the NgModu