1import { bootstrapApplication } from '@angular/platform-browser';
2
3import { AppComponent } from './app/app.component';
4import { appConfig } from './app/app.config';
5
6bootstrapApplication(AppComponent, appConfig).catch((err) =>
7 console.error(err),
8);