refactor: clear the stock app component

This commit is contained in:
2024-02-09 03:27:40 +03:00
parent bcc95c0f35
commit 19338b0132
5 changed files with 4 additions and 371 deletions

View File

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