mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
7 lines
211 B
TypeScript
7 lines
211 B
TypeScript
import { ApplicationConfig } from '@angular/core';
|
|
import { provideAnimations } from '@angular/platform-browser/animations';
|
|
|
|
export const appConfig: ApplicationConfig = {
|
|
providers: [provideAnimations()],
|
|
};
|