Skip to content

Commit

Permalink
feat: icon add provider to register icon class for symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
alecarn committed Apr 4, 2024
1 parent e299707 commit e1a3f0f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import { provideRouter } from '@angular/router';
import { ServiceWorkerModule } from '@angular/service-worker';

import { IgoAuthFormModule } from '@igo2/auth/form';
import { provideIcon } from '@igo2/common';
import { IgoCoreModule } from '@igo2/core';
import { ConfigService, provideConfigOptions } from '@igo2/core/config';
import { provideRootTranslation } from '@igo2/core/language';
Expand Down Expand Up @@ -47,7 +48,7 @@ bootstrapApplication(AppComponent, {
providers: [
importProvidersFrom(
BrowserModule,
IgoCoreModule.forRoot(),
IgoCoreModule,
IgoAuthFormModule.forRoot(),
IgoMessageModule,
PortalModule,
Expand All @@ -57,6 +58,7 @@ bootstrapApplication(AppComponent, {
})
),
provideRootTranslation(),
provideIcon(),
provideHttpClient(),
provideAnimations(),
provideRouter([]),
Expand Down

0 comments on commit e1a3f0f

Please sign in to comment.