ERROR: System limit for number of file watchers reached in Nuxt

siumhossain

sium_hossain

Posted on August 11, 2022

ERROR: System limit for number of file watchers reached in Nuxt

This error has no connection with NUXT. It's totally connected with system watcher limits. Simple one line command will resolve this issue.

echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
Enter fullscreen mode Exit fullscreen mode

Thank you

💖 💪 🙅 🚩
siumhossain
sium_hossain

Posted on August 11, 2022

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related