I was getting an error
Module build failed: Error: `sass-loader` requires `node-sass` >=4. Please install a compatible version.
The solution which works is:
- Remove the
node-sass
from globalnpm-cache
(For Windows users%userprofile%\AppData\Roaming\npm-cache
) - Remove
node-sass
from your project'snode_modules
dir - Do
npm install
to reinstall node-sass
No comments:
Post a Comment