Reputation: 125
we have a big project in Angular 2 (version 4.1.3). our main issue is that moving between pages cause slowness. if we refresh page, everything is ok.
I know that this question is problematic, but can you give me some ideas ?
we are using Angular Cli version 1.0.0
Upvotes: 0
Views: 68
Reputation: 14679
It seems your application is SPA (Single Page Application). In SPA when you navigate in other page, DOM become more heaviour in every visit of next page. Hence you have to work on how to maintain DOM light weight.
Check below points:
Upvotes: 1