About 123,000 results
Open links in new tab
  1. how to generate a lazy loading module using angular cli

    Oct 5, 2020 · I have an existing angular cli application and I want to add a new module to my application which will be loaded lazily I know angular cli provides command to generate …

  2. How to overcome loading chunk failed with Angular lazy loaded …

    Aug 24, 2021 · How to overcome loading chunk failed with Angular lazy loaded modules Asked 7 years, 9 months ago Modified 6 months ago Viewed 88k times

  3. Angular 19 routing child components in standalone architecture

    Feb 2, 2025 · Lazy-loading child components can be beneficial for large applications, especially if they are independent or infreq used. But if these adjectives do not describe your child …

  4. How To Load "Lazy" Modules Programmatically In Angular App?

    Mar 30, 2023 · The second link still uses the Router but the first looks to have the needed info on non-router loading (i.e. NgModuleFactoryLoader) though despite the article being from 2019 it …

  5. Angular 8 lazy loading with child routes - Stack Overflow

    Jul 28, 2019 · It is correct to use the import keyword for lazy loading in Angular 8 since the string syntax has been deprecated but you can keep it less verbose by removing the return keyword.

  6. angular - Preload all components when lazy loading standalone ...

    Mar 11, 2024 · With the usage of standalone components in angular 17, instead of using modules we can directly lazyLoad components. But the issue is how to preload in this case? Earlier …

  7. Angular: Lazy loading modules with services - Stack Overflow

    Thus the lazy services are privatized in their own module. Now for the root module to have access to the lazy service, it needs to follow the angular way of importing the module. Which is …

  8. lazy loading - LazyLoading component in angular 15 - specify …

    Mar 22, 2023 · Technically you're lazy loading the component, but you're going to get more help if you call this "dynamically creating" a component since you're creating and injecting it via code. …

  9. angular - mat-tab lazy load tab only once - Stack Overflow

    Oct 10, 2018 · 15 I am using Angular Material mat-tab and it is set to lazy load the tabs content. Since the first tab is loaded by default I have set second tab to load lazily. I see that when I …

  10. Is there a way to lazy load a component within each mat-step?

    Jun 3, 2020 · For reference, there is a built-in way of lazy rendering mat-step that is described in the Angular Material documentation. If you have some content that you want to want to defer …