From ca2f8e499262aa5e92e0083776a732437dbac333 Mon Sep 17 00:00:00 2001 From: Sercan Yemen <117369+srcn@users.noreply.github.com> Date: Mon, 28 Oct 2024 12:14:46 +0300 Subject: [PATCH] Disable route preloading --- src/app/app.config.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/app/app.config.ts b/src/app/app.config.ts index 62f1478b..6c176ddb 100644 --- a/src/app/app.config.ts +++ b/src/app/app.config.ts @@ -3,12 +3,7 @@ import { APP_INITIALIZER, ApplicationConfig, inject } from '@angular/core'; import { LuxonDateAdapter } from '@angular/material-luxon-adapter'; import { DateAdapter, MAT_DATE_FORMATS } from '@angular/material/core'; import { provideAnimations } from '@angular/platform-browser/animations'; -import { - PreloadAllModules, - provideRouter, - withInMemoryScrolling, - withPreloading, -} from '@angular/router'; +import { provideRouter, withInMemoryScrolling } from '@angular/router'; import { provideFuse } from '@fuse'; import { TranslocoService, provideTransloco } from '@ngneat/transloco'; import { appRoutes } from 'app/app.routes'; @@ -24,7 +19,6 @@ export const appConfig: ApplicationConfig = { provideHttpClient(), provideRouter( appRoutes, - withPreloading(PreloadAllModules), withInMemoryScrolling({ scrollPositionRestoration: 'enabled' }) ),