Reputation: 571
I'm trying to create react-redux app. During debugging Chrome dev tools does not show all the files. Actions and containers folders dissapeared. I can see them in VS code but not in Chrome dev tools. The base of my app is create-react-app. What is wrong? I have created new app just to check and I cannot add any new folder or file to the src folder.
Upvotes: 1
Views: 740
Reputation: 26403
couple things to do.
Go to network tab and refresh the page, then switch to sources.
Your IDE is showing more files because it shows all files and your dev tools shows only files used to load the site
Upvotes: 2