[Solved] Error: Node Sass version 6.0.1 is incompatible with ^4.0.0.

Start the project and prompt the following error

Error: Node Sass version 6.0.1 is incompatible with ^4.0.0.

Cause analysis

node-sass The version is too high, you need to uninstall and install the lower version.

Uninstall higher version

npm uninstall node-sass

Install lower version

cnpm install [email protected]

Run project

npm run serve

Read More: