main.ts 382 B

1234567
  1. import { provideZoneChangeDetection } from "@angular/core";
  2. import { bootstrapApplication } from '@angular/platform-browser';
  3. import { appConfig } from './app/app.config';
  4. import { AppComponent } from './app/app.component';
  5. bootstrapApplication(AppComponent, {...appConfig, providers: [provideZoneChangeDetection(), ...appConfig.providers]})
  6. .catch((err) => console.error(err));