I was trying to use Tailwind css with react project, i followed the exact instructions on Tailwind website on how to use Tailwind in React but when trying to run npm run start
it displays :
Failed to compile.
EIO: i/o error, read
did anyone ever faced this, ad please how to solve this ?
CodePudding user response:
When this kind of unexpected errors arise without any logic reason at all, it's recommended to follow these steps:
Check if you got
npm
's latest version installed and if you don't upgrade it.Delete your
node_modules
folder.Reinstall all the packages using
npm install
.