-
-
Notifications
You must be signed in to change notification settings - Fork 92
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
pagespeed: supporters section causes forced reflow #981
Comments
What if you remove the line that sets the classname? |
The latter was from removing the whole script block |
I figured out by deleting one section at a time from the homepage that it's coming from the CSS in the supporters section:
|
Here's another clue that something is going on with the supporters section. If you look at the LCP, it happens in the middle of hydration, which is surprising. It should happen earlier on from the SSR'd content. If you follow the dotted line down to the very bottom and click on the last anonymous script block, it takes you to the supporters code. |
I tried removing the Supporters section and deploying to a preview branch. It seemed to add a few points to the PageSpeed Insights score |
This line is being flagged as expensive by Chrome devtools because it causes the page layout to be recalculated:
svelte.dev/apps/svelte.dev/src/app.html
Line 53 in 03e3066
That class is used to do something on Macs. Not exactly sure what this is or why it's needed:
svelte.dev/packages/site-kit/src/lib/docs/DocsContents.svelte
Line 128 in 03e3066
The
.scrollbars-visible
class is unused and can be removedThe text was updated successfully, but these errors were encountered: