Reputation: 249
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
Reputation: 126
Delete node-modules folder.
run command npm cache clean --force
.
run command npm install
.
Finally install the package again with npm install your-package-name
.
Upvotes: 0
Reputation: 1682
You removed the file "CustomerList.vue" but you are importing it from another place. Just remove the import.
Upvotes: 1