2025-01-15 12:05:04 +01:00
|
|
|
import { HttpClientModule } from '@angular/common/http';
|
2024-12-18 08:30:10 +01:00
|
|
|
import { bootstrapApplication } from '@angular/platform-browser';
|
|
|
|
import { appConfig } from './app/app.config';
|
|
|
|
import { AppComponent } from './app/app.component';
|
|
|
|
|
2025-01-15 12:05:04 +01:00
|
|
|
bootstrapApplication(AppComponent , appConfig,)
|
2024-12-18 08:30:10 +01:00
|
|
|
.catch((err) => console.error(err));
|