High CPU usage from Node.js when running vue-cli-service serve
Installing the fsevents
module on MacOSX will help reduce the CPU usage.
npm install fsevents -g
npm rebuild fsevents
The problem was caused by the polling option.
Removing poll: true
from the watchOptions
in the webpack config - fixed the problem for me.