main.ts 437 B

12345678910
  1. import { bootstrapApplication } from '@angular/platform-browser';
  2. import { provideRouter } from '@angular/router';
  3. import { App } from './app/app';
  4. import { routes } from './app/app.routes';
  5. import { importProvidersFrom } from '@angular/core';
  6. import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
  7. import { appConfig } from './app/app.config';
  8. bootstrapApplication(App, appConfig)
  9. .catch((err) => console.error(err));