Created
May 22, 2024 19:51
-
-
Save rakia/f02410c287ff3c19a6528c2fed00816d to your computer and use it in GitHub Desktop.
Angular: zoneless component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { bootstrapApplication } from '@angular/platform-browser'; | |
import { provideExperimentalZonelessChangeDetection } from '@angular/core'; | |
import { AppComponent } from './app/app.component'; | |
bootstrapApplication(AppComponent, { | |
providers: [ | |
provideExperimentalZonelessChangeDetection(), | |
], | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment