main.ts 250 B

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