Remove AppModule and enhance Team and Header components

Deleted unused `AppModule` to streamline the project structure. Enhanced the `TeamComponent` by integrating team member data from the API and updating its template. Improved the `HeaderComponent` by adding `priority` to the logo image for better performance.
This commit is contained in:
2025-04-08 22:23:37 +02:00
parent c2c81de9d0
commit 21496baab5
5 changed files with 18 additions and 50 deletions
+3 -1
View File
@@ -3,12 +3,14 @@ import {AppComponent} from './app/app.component';
import {provideRouter} from '@angular/router';
import {routes} from './app/app.routes';
import {provideHttpClient} from '@angular/common/http';
import {BASE_PATH} from './api';
bootstrapApplication(AppComponent, {
providers: [
provideRouter(routes),
provideHttpClient()
provideHttpClient(),
{provide: BASE_PATH, useValue: 'http://localhost:8080'}
]
}).catch(err => console.error(err));