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) => console.error(err));