We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a31442 commit 2835b80Copy full SHA for 2835b80
1 file changed
src/app/app.module.ts
@@ -6,6 +6,8 @@ import { AppComponent } from './app.component';
6
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
7
import { HttpClientModule } from '@angular/common/http';
8
import { TranslocoRootModule } from './transloco-root.module';
9
+import { CurrencyPipe } from '@angular/common';
10
+
11
12
@NgModule({
13
declarations: [
@@ -18,7 +20,7 @@ import { TranslocoRootModule } from './transloco-root.module';
18
20
HttpClientModule,
19
21
TranslocoRootModule
22
],
- providers: [],
23
+ providers: [CurrencyPipe],
24
bootstrap: [AppComponent]
25
})
26
export class AppModule { }
0 commit comments