main.ts 222 B

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