Muhammad Numan
Muhammad Numan

Reputation: 249

nodemodule not found file or directory

When I remove some extra files in my project i found an error. It create a much of errors in my project

Following picture is showing as

I did't have any idea to solve it help me to solve the issue.

Upvotes: 0

Views: 1991

Answers (2)

Voxelli
Voxelli

Reputation: 126

  1. Delete node-modules folder.

  2. run command npm cache clean --force.

  3. run command npm install.

  4. Finally install the package again with npm install your-package-name.

Upvotes: 0

Pablo
Pablo

Reputation: 1682

You removed the file "CustomerList.vue" but you are importing it from another place. Just remove the import.

Upvotes: 1

Related Questions