Skip to content

Commit 7bfee15

Browse files
committed
refactor(app.config): remove importProvidersFrom(SidebarModule, DropdownModule)
1 parent b0490ff commit 7bfee15

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/app/app.config.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ApplicationConfig, importProvidersFrom } from '@angular/core';
1+
import { ApplicationConfig } from '@angular/core';
22
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
33
import {
44
provideRouter,
@@ -8,8 +8,6 @@ import {
88
withRouterConfig,
99
withViewTransitions
1010
} from '@angular/router';
11-
12-
import { DropdownModule, SidebarModule } from '@coreui/angular';
1311
import { IconSetService } from '@coreui/icons-angular';
1412
import { routes } from './app.routes';
1513

@@ -27,8 +25,8 @@ export const appConfig: ApplicationConfig = {
2725
withViewTransitions(),
2826
withHashLocation()
2927
),
30-
importProvidersFrom(SidebarModule, DropdownModule),
3128
IconSetService,
3229
provideAnimationsAsync()
3330
]
3431
};
32+

0 commit comments

Comments
 (0)