Changelog says:
By default Angular now only contains locale data for the language en-US, if you set the value of LOCALE_ID to another locale, you will have to import new locale data for this language because we don’t use the intl API anymore.
But I can not find any reference what "importing" means, how to do it and I get
xxx.html:30 ERROR Error: Missing locale data for the locale "de-CH"
I configure locale with :
import { LOCALE_ID } from '@angular/core';
and
providers: [
{ provide: LOCALE_ID, useValue: 'de-CH' }
],