Refactor app configuration for improved code consistency and formatting

This commit is contained in:
Christian Werner 2025-11-11 22:50:33 +01:00
parent 25fdb8e42e
commit 6e520b0cd7

View File

@ -4,7 +4,6 @@ import { provideRouter } from '@angular/router';
import {routes} from './app.routes';
import {GandalfClientBaseAPI} from './clients/gandalf/gandalf-client';
import {provideHttpClient} from '@angular/common/http';
import { provideClientHydration, withEventReplay } from '@angular/platform-browser';
export const appConfig: ApplicationConfig = {
providers: [
@ -14,6 +13,6 @@ export const appConfig: ApplicationConfig = {
{
provide: GandalfClientBaseAPI,
useValue: 'http://localhost:5055'
}, provideClientHydration(withEventReplay())
}
]
};