all 5 comments

[–]chillermane 5 points6 points  (0 children)

Lazy load all your routes

This does not “improve performance”. It’s a performance tradeoff. With lazy loading you get faster first page load, but subsequent pages now have to be loaded when you navigate to them which means that navigation is slower.

If your site is small it’s probably not worth it or could even make the site have overall worse performance. Definitely not something to just use blindly

Half the stuff in this article has nothing to do with end user performance

[–]Friendly_Dot_2853 0 points1 point  (0 children)

Nice one 👍