Angular 22 upgrade
All checks were successful
Deploy dzanan.net / deploy (push) Successful in 52s

This commit is contained in:
amar.dzanan
2026-09-06 20:16:55 +02:00
parent e64239fbae
commit 886292aca9
6 changed files with 2736 additions and 2873 deletions

View File

@@ -2,7 +2,7 @@ import { ApplicationConfig, provideBrowserGlobalErrorListeners, provideZonelessC
import { provideRouter, withInMemoryScrolling } from '@angular/router';
import { routes } from './app.routes';
import { provideClientHydration, withEventReplay } from '@angular/platform-browser';
import { provideClientHydration, withEventReplay, withNoIncrementalHydration } from '@angular/platform-browser';
export const appConfig: ApplicationConfig = {
providers: [
@@ -14,6 +14,6 @@ export const appConfig: ApplicationConfig = {
scrollPositionRestoration: 'enabled'
})
),
provideClientHydration(withEventReplay())
provideClientHydration(withEventReplay(), withNoIncrementalHydration())
]
};