What is a potential drawback of not using lazy loading in larger applications?

  • Increased memory usage
  • Larger initial bundle size
  • Reduced component reusability
  • Slower application startup
Not using lazy loading in larger applications can result in a larger initial bundle size. This means that users need to download a bigger JavaScript file when they first access the application, which can lead to slower loading times, especially on slower network connections.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *