W3cubDocs

/Angular

provideZoneChangeDetection

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.

NgZone is already provided in applications by default. This provider allows you to 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}),
]});

Super-powered by Google ©2010–2025.
Code licensed under an MIT-style License. Documentation licensed under CC BY 4.0.
https://angular.dev/api/core/provideZoneChangeDetection