Ionic Initial Loading Time
I am building a simple app with Ionic. But my app has a performance issue with initial loading time on cold start. Here is what I have done: collection-repeat instead of ng-repeat
Solution 1:
Without seeing your code, ionic and dependencies versions, and some output, it's hard to tell exactly. However, updating to the most recent version of Ionic Cloud and building with the production flag reduced my cold start load time from 20+ seconds to under 4 seconds.
npm install @ionic/cloud-angular@latest--save
ionic build --prod
It will take longer to build but you'll have a much faster cold start time.
Post a Comment for "Ionic Initial Loading Time"