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()