-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Optimization: Eliminate render-blocking resources #4172
Labels
Comments
This was referenced Nov 5, 2020
Closed
Optimization (accessibility): [user-scalable="no"] or [maximum-scale] attribute is less than 5
#4188
Closed
Closing this ticket while we wrap up the webpack work. #2708 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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: Eliminate render-blocking resources
Resources are blocking the first paint of your page. Consider delivering critical JS/CSS inline and deferring all non-critical JS/styles. details
Overview
We could embed the content of our CSS and JS files into the page rather than linking to them
Benefit (the 80 of 80/20)
Minimal
Effort (the 20 of 80/20)
Likely minimal
Complications
<script>
and<script src="…">
. Check into CORS rules<script async defer>
in the head (which would load last) vs putting all that code into the page right thenRelated tickets
The text was updated successfully, but these errors were encountered: