```json //[doc-seo] { "Description": "Easily lazy load scripts and styles in your Angular app with ABP's `LazyLoadService`, streamlining resource management and improving performance." } ``` # Lazy Loading Scripts & Styles You can use the `LazyLoadService` in @abp/ng.core package in order to lazy load scripts and styles in an easy and explicit way. ## Getting Started You do not have to provide the `LazyLoadService` at module or component level, because it is already **provided in root**. You can inject and start using it immediately in your components, directives, or services. ```js import { LazyLoadService } from '@abp/ng.core'; import { inject } from '@angular/core'; @Component({ /* class metadata here */ }) class DemoComponent { private lazyLoadService = inject(LazyLoadService); } ``` ## Usage You can use the `load` method of `LazyLoadService` to create a `