Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
main.ts 245 B
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { appConfig } from 'app.config';

bootstrapApplication(AppComponent, appConfig).catch((err) =>
  console.error(err),
);