Zet
Zet

Reputation: 571

react-redux project. Chrome dev tools does not show all projects files

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. enter image description here

Upvotes: 1

Views: 740

Answers (1)

Lukas Liesis
Lukas Liesis

Reputation: 26403

couple things to do.

  1. reset to default to make sure nothing is because of settings (F1 while in dev tools to open settings):

enter image description here

  1. Go to network tab and refresh the page, then switch to sources. enter image description here

  2. 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

Related Questions