Javascript – Converting lazy loaded module into an eagerly loaded module
I would like to convert one of my lazy loading modules into eagerly loading module. I have this code in my app-routing.module.ts: const accountModule = () => import('./account/account.module').then(x => x.AccountModule); const adminModule = () => import('./admin/admin.module').then(x => x.AdminModule); const profileModule…