Reputation: 6761
When I run Lighthouse for the project I am working on, I get
chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/react_devtools_backend.js
as no.1 causer of unused JS.
How does that make sense from a performance optimization perspective? I can't control what extensions the user runs in his browser. I also can't find anything about the React dev tools in the project.
I would highly appreciate it if someone could shed some light on that issue.
Upvotes: 13
Views: 7420
Reputation: 151
I found the issue because the React Dev Tools extension is installed when the page is loading and is useless in production mode.
Upvotes: 15