Troubleshooting


[FIX] ERNOSPC when running npm run watch

The problem stems from the machine’s self imposed limit on how many files it can watch at one time Read more here. To fix, run:

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


Flush DNS

Sometimes you might need to flush your PC’ DNS in order to see reflected changes. Use the command below to do that.

sudo systemd-resolve --flush-caches