Reputation: 313
How do I debug a react application generated by jhipster at intellij-idea?
Using built in debug at intellij-idea I can debug only the backend. I want to debug the front-end at same time
Upvotes: 0
Views: 1025
Reputation: 93778
You can debug it using instructions from https://blog.jetbrains.com/webstorm/2017/01/debugging-react-apps/:
./mvnw
, npm start
or whatever way you normally use)Upvotes: 3