You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looking to optimize the site's performance and that of the homepage specifically, the Lighthouse tool in Chromium browsers has made some suggestions. Some of these will have repercussions throughout the app so we're going to make them their own tickets.
Recommendation: Avoid an excessive DOM size
A large DOM will increase memory usage, cause longer style calculations, and produce costly layout reflows. details
Overview
We could change our document structure/appearance to speed initial page draw
Benefit (the 80 of 80/20)
Minimal? Lighthouse flagged it because we have 1,534 elements, but they flag anything over 1,500.
Effort (the 20 of 80/20)
Moderate to Significant
Complications
With remediations like hiding DOM elements or removing them until needed, we could hurt accessibility
Background
Looking to optimize the site's performance and that of the homepage specifically, the Lighthouse tool in Chromium browsers has made some suggestions. Some of these will have repercussions throughout the app so we're going to make them their own tickets.
Recommendation: Avoid an excessive DOM size
A large DOM will increase memory usage, cause longer style calculations, and produce costly layout reflows. details
Overview
We could change our document structure/appearance to speed initial page draw
Benefit (the 80 of 80/20)
Minimal? Lighthouse flagged it because we have 1,534 elements, but they flag anything over 1,500.
Effort (the 20 of 80/20)
Moderate to Significant
Complications
Related tickets
The text was updated successfully, but these errors were encountered: