providePlatformInitializer
function
stable
This function is used to provide initialization functions that will be executed upon initialization of the platform injector.
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 })
Jump to details