Does increasing number of pages decrease app speed in ionic-angular

does making too many pages in app has an effect on performance

As long as you are using lazy loading, and you aren’t doing anything out of the ordinary, then more pages should only increase the overall bundle size of the application.

If you think of it as a normal website, you could have a website with a thousand pages, but that doesn’t make the individual pages slow because you are only loading the resources you need at the time.

1 Like