APP_INITIALIZER

Angular How to use APP_INITIALIZER

The APP_INITIALIZER is an instance of InjectionToken. It is a built in Injection token provided by Angular. The Angular will execute the function provided by this token when the application loads. If the function returns the promise, then the angular will wait until the promise is resolved. This will make it ideal place to perform some initialization logic before the application is initialized.

Angular How to use APP_INITIALIZER Read More »

Scroll to Top