Error: No provider for config

Viewed 3040
1 Answers

You have a component, directive, pipe, or service that has a constructor parameter constructor(foo:Config) but you haven't registered a provider for type Config. Angulars DI therefore can't create an instance of this class and instead throws an exception.

Related