Added dependancies for UI Prettier - ESLint - PrimeNg

This commit is contained in:
AdamBtech
2025-05-19 16:15:10 +02:00
parent bf65955da8
commit 97d457f2b9
4 changed files with 3697 additions and 3 deletions

View File

@@ -1,8 +1,12 @@
import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
import { provideRouter } from '@angular/router';
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
import { providePrimeNG } from 'primeng/config';
import Aura from '@primeng/themes/aura';
import { routes } from './app.routes';
export const appConfig: ApplicationConfig = {
providers: [provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes)]
providers: [provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes), provideAnimationsAsync(),
providePrimeNG({ theme: { preset: Aura } })]
};