I am unable to get this documentation for enabling the REACT_DEBUGGER
. Where to find the path of the main file that will be executed for this REACT_DEBUGGER
. Can anyone tell how to set it in windows environment?
Asked
Active
Viewed 1,231 times
1

Stack Overflow
- 1
- 5
- 23
- 51
-
In your case there's actually 2 possibilities. 1- operating system environment variables, 2- .env file of your react-app. Did you try each of them individually ? – alegria Dec 10 '18 at 20:26
-
no, because setting environment variable need path of the file, i dont know which file to add under `REACT_DEBUGGER` – Stack Overflow Dec 10 '18 at 20:30
-
the docs you linked says `node yourDebugger.js --etc` is interpreted as a run command in form of `node yourDebugger --etc /yourAppDir`. So, if you have `node.exe` in your PATH it should work just fine. – alegria Dec 11 '18 at 06:37