Reputation: 65
After I use npm install
I get this error in this link below
https://i.sstatic.net/nVvps.jpg
I have this problem today and i don't know why
Upvotes: 0
Views: 339
Reputation: 430
These kind of problems could be happening when clashing react modules.
Delete node_module
folder and package-lock.json
file. Then run again npm install
.
Upvotes: 3