providePlatformInitializer
function
stable
This function is used to provide initialization functions that will be executed upon initialization of the platform injector.
providePlatformInitializer
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.
@paraminitializerFn
() => void@returns
StaticProviderUsage notes
The platform initializer should be provided during platform creation:
const platformRef = platformBrowser([ providePlatformInitializer(() => ...) ]);bootstrapApplication(App, appConfig, { platformRef })
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