This function is used to provide initialization functions that will be executed upon initialization of the platform injector.
API
function providePlatformInitializer(initializerFn: () => void): StaticProvider;
Description
This function is used to provide initialization functions that will be executed upon initialization of the platform injector.
Note that the provided initializer is run in the injection context.
Usage Notes
The platform initializer should be provided during platform creation:
const platformRef = platformBrowser([ providePlatformInitializer(() => ...) ]);
bootstrapApplication(App, appConfig, { platformRef })