Lighthouse: Remove unused JavaScript #13682
-
I build this little polling site https://poll-hp61gmonn.now.sh , but when I test the site with Lighthouse (https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Fpoll-hp61gmonn.now.sh%2F) I get the message that I ship unused javascript. I analized by code using Madge but I havent found dead code this way. Could it be that one of the libaries I use is causing this? My dependencies are:
The repo can be found here: https://github.com/enricoschaaf/poll Thanks a lot! Edit: I now created a fresh project with the vercel Next.js template and I get the same message. Is there currently a problem with bundling in Next.js? Edit 2: Just reran lighthouse on the "Hello World" Next.js project. Now I dont get any message. Maybe there is a problem with lighthouse. |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 16 replies
-
I have a similar issue, explained there: |
Beta Was this translation helpful? Give feedback.
-
I am seeing this on my end as well today - lighthouse scores for various pages on my website dropped from ~90 to ~75. |
Beta Was this translation helpful? Give feedback.
-
I opened an issue on LightHouse. |
Beta Was this translation helpful? Give feedback.
-
Hey everyone Lighthouse maintainer here 👋 This is working as intended in Lighthouse. It is a new audit in 6.0 that highlights files that have a considerable amount of unused JavaScript. In that URL that's highlighted, about 70% of the main chunk is unused. You can explore each line in detail using the "Coverage" panel in DevTools. screenshot of the coverage panel highlighting unused portions of the main chunk related to animations It is somewhat inevitable that some subset of JavaScript will be unused when using someone's library. They will have built features that you simply don't need. It's not important to obsess over 100% usage as that will be virtually impossible, but when it's a rather large amount of unused bytes, it's worth taking a look to see what you might be able to split out or if you really need the library. Also worth noting that this new audit highlighting unused javascript in no way impacts the Lighthouse score. It is only suggesting one potential approach to help improve performance. Opportunities never impact the score and the score changes are a result of the new metrics that were added in 6.0, LCP and TBT. |
Beta Was this translation helpful? Give feedback.
Hey everyone Lighthouse maintainer here 👋
This is working as intended in Lighthouse. It is a new audit in 6.0 that highlights files that have a considerable amount of unused JavaScript. In that URL that's highlighted, about 70% of the main chunk is unused. You can explore each line in detail using the "Coverage" panel in DevTools.
screenshot of the coverage panel highlighting unused portions of the main chunk related to animations
It is somewhat inevitable that some subset of JavaScript will be unused when using someone's library. They will have built features that you simply don't need. It's not important to obsess over 100% usage as that will be virtually impossible, but when it's a ra…