Angular Material mit Indigo/Pink-Theme, Animationsmodul und globalen Angular Material-Typografiestilen hinzugefügt.

This commit is contained in:
Developer 02
2024-06-13 09:50:02 +02:00
parent af27163b08
commit 13b9394073
6 changed files with 853 additions and 4 deletions

View File

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