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: Reduce JavaScript execution time
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. details
Overview
We could speed our page load and render by a few seconds by optimizing our JS files.
Benefit (the 80 of 80/20)
Moderate
Effort (the 20 of 80/20)
Minimal to significant
Could be less noticeable after removing JS files that aren't used, inlining some, and deferring others. May be alleviated with a new build routine (with Webpack 4+)
Complications
With no 'done' state, this could become an optimization time sink
Should make sure we don't remove code from pages where it's needed
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: Reduce JavaScript execution time
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. details
Overview
We could speed our page load and render by a few seconds by optimizing our JS files.
Benefit (the 80 of 80/20)
Moderate
Effort (the 20 of 80/20)
Minimal to significant
Could be less noticeable after removing JS files that aren't used, inlining some, and deferring others. May be alleviated with a new build routine (with Webpack 4+)
Complications
Related tickets
The text was updated successfully, but these errors were encountered: