Ionic 2 Cordova - Speed up the boot and initial time for your app
Issue:
If you are facing the issue loading time of Ionic 2 app is too slow and too long, could be 20 second or higher, you should do following steps
Fix:
- Enable production mode for your app, in main.ts:
- Build app with --prod
Enjoy!
If you are facing the issue loading time of Ionic 2 app is too slow and too long, could be 20 second or higher, you should do following steps
Fix:
- Enable production mode for your app, in main.ts:
import {enableProdMode} from '@angular/core';
enableProdMode();
bootstrap(....);
- Remove development plugin while build, like console
cordova plugin rm cordova-plugin-console
cordova build --prod --release android
Enjoy!
Thanks, this help me to fix issue
ReplyDelete