marcvc
marcvc
The app.jsx file is in the src folder. Does the src folder have to be in the static folder, or directly under the project root?
Hi Vasan, I just checked, and the src folder was in the wrong place. I changed location and retried, but I am still getting the same error. C:\Users\vanco>cd ../../ C:\>cd...
UNfortunately, still not working: C:\Marc\Web Development\MERN\chapter_02>node_modules****.bin babel src --presets react --out-dir static 'node_modules****.bin' is not recognized as an internal or external command, operable program or batch file.
With the backslash, it's still not recognized: C:\Marc\Web Development\MERN\chapter_02>node_modules\.bin babel src --presets react --out-dir static 'node_modules\.bin' is not recognized as an internal or external command, operable program or batch file.
Yes! This command did the trick: C:\Marc\Web Development\MERN\chapter_02>node_modules\.bin\babel src --presets react --out-dir static src\app.jsx -> static\app.js Thanks a lot for your support, Vasan! I'm very new to this kind of...