If you are using Angular 17+, you will need to update app.config.ts. Add provideAnimations() in the providers array under ApplicationConfig.
export const appConfig: ApplicationConfig = {
providers: [provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes),provideAnimations()
]
};