Fix guide · low · react_devtools_enabled
React DevTools enabled in production build
What this rule means
The __REACT_DEVTOOLS_GLOBAL_HOOK__ is present, indicating a production build with dev flags on.
Why it matters
Visitors with React DevTools see the full component tree, all props, all state. Less bad than Redux DevTools (no action history), but still leaks application structure.
How to fix it
Verify your production build is using NODE_ENV=production. Most React/Vite/Next configs handle this automatically; the flag indicates something went wrong with build config.
Did vibecheck flag this on your app?
If you reached this page from a vibecheck inspection report, the redacted match in your scan output is the exact string we found in your bundle. After applying the fix above, run the inspection again — the finding should clear.
Run another inspection