when launching angular with a standalone component like
bootstrapApplication(AppComponent,{...
how can we set the ngZone parameter
With modules it goes like:
platformBrowserDynamic()
.bootstrapModule(AppModule, { ngZone: 'noop' })
but I did not see a way to do the same with bootstrapApplication()
Unfortunately, there's no option for it at the moment (v15)
More details and workaround could be found here: https://github.com/angular/angular/issues/47538