12345678910 |
- import { bootstrapApplication } from '@angular/platform-browser';
- import { provideRouter } from '@angular/router';
- import { App } from './app/app';
- import { routes } from './app/app.routes';
- import { importProvidersFrom } from '@angular/core';
- import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
- import { appConfig } from './app/app.config';
- bootstrapApplication(App, appConfig)
- .catch((err) => console.error(err));
|