• Overview
@angular/core

providePlatformInitializer

function
stable

This function is used to provide initialization functions that will be executed upon initialization of the platform injector.

API

function providePlatformInitializer(initializerFn: () => void): StaticProvider;

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
Usage 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