Installation

Install @angularforge/gallery and enable Angular animations.

npm install @angularforge/gallery

Add provideAnimations() (or BrowserAnimationsModule ) to your application providers:

app.config.ts
import { provideAnimations } from '@angular/platform-browser/animations';

export const appConfig: ApplicationConfig = {
  providers: [provideAnimations()],
};