Added Angular Material.

This commit is contained in:
Tom
2025-06-25 14:53:10 +00:00
parent 60e179cd13
commit 89b29c58dc
7 changed files with 49 additions and 4 deletions

View File

@ -5,6 +5,7 @@ import { provideClientHydration } from '@angular/platform-browser';
import { provideHttpClient, withInterceptorsFromDi, withFetch, HTTP_INTERCEPTORS } from '@angular/common/http';
import { LoadingInterceptor } from './shared/interceptors/loading.interceptor';
import { TokenValidationInterceptor } from './shared/interceptors/token-validation.interceptor';
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
export const appConfig: ApplicationConfig = {
providers: [
@ -17,5 +18,6 @@ export const appConfig: ApplicationConfig = {
),
LoadingInterceptor,
TokenValidationInterceptor,
provideAnimationsAsync(),
]
};