nodemon – Internal watch failed: watch ENOSPC
Recently I have faced issue:
[nodemon] Internal watch failed: ENOSPC: no space left on device
To solve it: I just run the following command:
echo fs.inotify.max_user_watches=582222 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
And its resolve the issue!
Leave a Reply
You must be logged in to post a comment.