mirror of
https://github.com/adam-benyekkou/my_portfolio.git
synced 2026-01-15 20:20:09 +00:00
25 lines
696 B
TypeScript
25 lines
696 B
TypeScript
import { ApplicationConfig } from '@angular/core';
|
|
import { provideRouter } from '@angular/router';
|
|
import { routes } from './app.routes';
|
|
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
|
|
import { providePrimeNG } from 'primeng/config';
|
|
import Aura from '@primeng/themes/aura'; // Choisissez votre thème
|
|
|
|
export const appConfig: ApplicationConfig = {
|
|
providers: [
|
|
provideRouter(routes),
|
|
provideAnimationsAsync(),
|
|
providePrimeNG({
|
|
theme: {
|
|
preset: Aura,
|
|
options: {
|
|
cssLayer: {
|
|
name: 'primeng',
|
|
order: 'tailwind-base, primeng, tailwind-utilities'
|
|
}
|
|
}
|
|
}
|
|
})
|
|
]
|
|
};
|