Don't add ConfigService to providers of your component. This results in new instances for every component.
Add it to providers of a common parent component. If you add it to your root component or bootstrap(App, [ConfigService]) your entire application shares a single instance.