Zoneless Angular
Run Angular without Zone.js.
Beyond Zone.js
Zone.js has overhead and patches global APIs. Modern Angular offers a zoneless mode where change detection is driven by signals and explicit notifications instead of zone patching.
Enabling Zoneless
Provide the zoneless change detection provider in your bootstrap config.
bootstrapApplication(AppComponent, {
providers: [
provideExperimentalZonelessChangeDetection()
]
});