Reputation: 11
I ran npm run dev
but I do have the following error
missing script: dev
My package.json
's scripts section do have a "dev": "nuxt"
Upvotes: 1
Views: 1172
Reputation: 577
You can delete your node_module and run this command again npm install If this didn't work you can delete node_module and use yarn install
Note: you have to have yarn installed on your pc or laptop
then try npm run dev again
Upvotes: 1