InterviewSolution
Saved Bookmarks
| 1. |
What AOT and JIT and which is used by Ionic? |
|
Answer» SINCE Ionic 1-3 are majorly dependent on ANGULAR. The Compilation options that were available for Angular were available for Ionic too. I have mentioned them below.
An app that is built with JIT is slow as compared to AOT. But compilation time required for AOT is more than JIT. So for a quick checks use JIT and for a final deployment use AOT. |
|