main.ts raw

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