You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 line
416 B

  1. import { ApplicationConfig } from '@angular/core';
  2. import { provideRouter } from '@angular/router';
  3. import { routes } from './app.routes';
  4. import { provideClientHydration } from '@angular/platform-browser';
  5. import { provideAnimations } from '@angular/platform-browser/animations';
  6. export const appConfig: ApplicationConfig = {
  7. providers: [provideRouter(routes), provideClientHydration(), provideAnimations()]
  8. };