mirror of https://github.com/abpframework/abp.git
6 changed files with 21 additions and 18 deletions
@ -1,5 +1,6 @@ |
|||
import { provideZoneChangeDetection } from "@angular/core"; |
|||
import { bootstrapApplication } from '@angular/platform-browser'; |
|||
import { appConfig } from './app/app.config'; |
|||
import { AppComponent } from './app/app.component'; |
|||
|
|||
bootstrapApplication(AppComponent, appConfig).catch(err => console.error(err)); |
|||
bootstrapApplication(AppComponent, {...appConfig, providers: [provideZoneChangeDetection(), ...appConfig.providers]}).catch(err => console.error(err)); |
|||
|
|||
@ -1,5 +1,6 @@ |
|||
import { provideZoneChangeDetection } from "@angular/core"; |
|||
import { bootstrapApplication } from '@angular/platform-browser'; |
|||
import { appConfig } from './app/app.config'; |
|||
import { AppComponent } from './app/app.component'; |
|||
|
|||
bootstrapApplication(AppComponent, appConfig).catch(err => console.error(err)); |
|||
bootstrapApplication(AppComponent, {...appConfig, providers: [provideZoneChangeDetection(), ...appConfig.providers]}).catch(err => console.error(err)); |
|||
|
|||
@ -1,5 +1,6 @@ |
|||
import { provideZoneChangeDetection } from "@angular/core"; |
|||
import { bootstrapApplication } from '@angular/platform-browser'; |
|||
import { appConfig } from './app/app.config'; |
|||
import { AppComponent } from './app/app.component'; |
|||
|
|||
bootstrapApplication(AppComponent, appConfig).catch(err => console.error(err)); |
|||
bootstrapApplication(AppComponent, {...appConfig, providers: [provideZoneChangeDetection(), ...appConfig.providers]}).catch(err => console.error(err)); |
|||
|
|||
Loading…
Reference in new issue