Home > database >  Concurrently setup fix
Concurrently setup fix

Time:06-10

Concurrently setup error Please help me out to fix this error. I am using concurrently dev dependencies to run server and client site simultaneously but its not working as you can see in this photo.

CodePudding user response:

Try this :

"concurrently --kill-others-on-fail \"npm run start:client\" \"npm run start:server\" "

CodePudding user response:

Your console "says" that, It looks like You have a path issue in the first place, not concurrently module.

The solution is very simple :

  1. Please Add C:\Windows\System32 to the global PATH environment variable.
  • Related