ng-loading-bar
Advanced tools
Changelog
The NgLoadingBarModule
module must be imported using the forRoot() method.
Before:
@NgModule({
imports: [NgLoadingBarModule],
})
export class AppModule {}
After:
@NgModule({
imports: [NgLoadingBarModule.forRoot()],
})
export class AppModule {}