provideZoneChangeDetection
function
stable
Provides NgZone-based change detection for the application bootstrapped using
bootstrapApplication.
API
function provideZoneChangeDetection( options?: NgZoneOptions | undefined,): EnvironmentProviders;Description
Provides NgZone-based change detection for the application bootstrapped using
bootstrapApplication.
Add this provider to use NgZone/ZoneJS-based change detection and configure options like
eventCoalescing in the NgZone.
If you need this provider function in an NgModule-based application, pass it as applicationProviders to bootstrapModule().
Usage Notes
bootstrapApplication(MyApp, {providers: [ provideZoneChangeDetection({eventCoalescing: true}),]});
Jump to details