[Vuejs]-Running vue documentation locally

0👍

You ran out of watchers. Proper solution would be to find out why that happened, however you can simply raise available amount of watchers.

fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p

or remove files that are watched but aren’t needed, for example some unused templates or assets.

You can find more options here:
Node.JS Error: ENOSPC

Leave a comment