I am currently working with Angular 9
Within one of my components, I have implemented Currency Formatting as shown below:
import { formatCurrency } from '@angular/common';
formatCurrency(23456, 'de-DE', '$')
When I use 'de-DE' as the culture, I encounter the following error:
Error: Missing locale data for the locale "de-DE"
However, when I switch to 'en-DE' as the culture, everything works smoothly.
Can anyone offer insight into what might be causing this issue? Any help would be greatly appreciated.