How would you Optimize an Angular application for better performance?
We can consider below points for better performance:
- Consider AOT compilation.
- Consider lazy loading instead of fully bundled app if the app size is more.
- your application is bundled and disfeatured.
- your application doesn’t have un-necessary import statements.
- your application’s 3rd party unused library. If exist and not used, removed from your application.
- Remove your application dependencies if not required.