React DevTools `Show Source` is not working
See original GitHub issueI tried to view source of component in React Panel

But it ended up with somewhere in makeAssimilatePrototype.js
module.exports = function makeAssimilatePrototype() {
var storedPrototype,
knownPrototypes = [];
function wrapMethod(key) {
return function () {
if (storedPrototype[key]) {
return storedPrototype[key].apply(this, arguments);
}
};
}
Issue Analytics
- State:
- Created 8 years ago
- Comments:15 (8 by maintainers)
Top Results From Across the Web
No Link to source-code in Chrome Devtools for React ...
When I click on components like for instance Evaluate Script, the blue links on the right hand side show. Isn`t source mapping supposed...
Read more >How To Debug React Components Using React Developer ...
Open the console by either right-clicking and inspecting an element or by opening the toolbar by clicking View > Developer > JavaScript console....
Read more >Optimizing Performance - React
If you're benchmarking or experiencing performance problems in your React apps, make sure you're testing with the minified production build.
Read more >react developer tools does not showing components - You.com
If you don't see your component when searching by its name, then it means it is currently not being rendered. You need to...
Read more >How to Hide your React Source Code from Chrome Dev Tools ...
This is not an issue with the create-react-app but all of the source code is added because of the source map which helps...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Fixed in 4.5.0 (beta) - https://github.com/gaearon/react-hot-loader#setconfigconfig
@Bnaya - you need
setConfig({pureRender: true});