Add virtual scrolling card component

Add OpenAPI client(s)
This commit is contained in:
2025-04-24 20:53:25 +02:00
parent 39377d7dfe
commit 5d05dbd041
31 changed files with 2588 additions and 167 deletions

View File

@@ -4,6 +4,8 @@ import {routes} from './app.routes';
import {provideAnimationsAsync} from '@angular/platform-browser/animations/async';
import {providePrimeNG} from 'primeng/config';
import Aura from '@primeng/themes/aura';
import {BASE_PATH} from './openapi';
import {provideHttpClient} from '@angular/common/http';
export const appConfig: ApplicationConfig = {
providers: [
@@ -14,6 +16,8 @@ export const appConfig: ApplicationConfig = {
theme: {
preset: Aura
}
})
}),
provideHttpClient(),
{provide: BASE_PATH, useValue: 'http://localhost:8080'}
]
};