[Vuejs]-Vue cli -> npm run dev stopped working after system recovery on windows 7

0👍

I didn’t figured out how to fix npm run dev, but I tried yarn instead.

$ npm install -g yarn

$ vue init webpack

-> Should we run npm install for you after the project has been created? (recommended) `yarn`

$ yarn run dev

This fixed my problem and I was able to run my project via yarn run dev.

Leave a comment