This error could be nightmare.
The inotify package in Linux is used to monitor filesystem events, specific files, or directories.
React/Angular/Vue must maintain track of every file in a project since it hot-reloads and recompiles files after saving. The warning message will disappear if the inotify watch limit is raised.
Run this command into your terminal,
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
To check that the new value was applied or not run this
cat /proc/sys/fs/inotify/max_user_watches
config variable name (not runnable)
fs.inotify.max_user_watches=524288
Top comments (0)