update angular to v19 (#2)

Co-authored-by: Jan-Marlon Leibl <jleibl@proton.me>
Reviewed-on: #2
This commit is contained in:
2024-12-18 09:04:14 +00:00
parent 05a0b8092a
commit 3595348aee
9 changed files with 40 additions and 13376 deletions

View File

@ -3,7 +3,8 @@ import { provideRouter } from '@angular/router';
import { routes } from './app.routes';
import {provideHttpClient, withInterceptorsFromDi} from "@angular/common/http";
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
export const appConfig: ApplicationConfig = {
providers: [provideRouter(routes), provideHttpClient(withInterceptorsFromDi())]
providers: [provideRouter(routes), provideHttpClient(withInterceptorsFromDi()), provideAnimationsAsync()]
};