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: Preload key requests
Consider using <link rel=preload> to prioritize fetching resources that are currently requested later in page load. details
Overview
Could add <link rel="preload" as="font" elements to <head> of template(s)
Benefit (the 80 of 80/20)
It's at the top of the list and could save us nearly seven seconds.
Effort (the 20 of 80/20)
Light
Complications
Likely minimal as we're only preloading files that will be required anyway—not moving or removing anything.
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: Preload key requests
Consider using
<link rel=preload>
to prioritize fetching resources that are currently requested later in page load. detailsOverview
Could add
<link rel="preload" as="font"
elements to<head>
of template(s)Benefit (the 80 of 80/20)
It's at the top of the list and could save us nearly seven seconds.
Effort (the 20 of 80/20)
Light
Complications
Likely minimal as we're only preloading files that will be required anyway—not moving or removing anything.
Related tickets
Completion criteria:
Next steps
Maybe apply these types of changes to other high profile landing pages
The text was updated successfully, but these errors were encountered: