Categories
JavaScript Answers

How to fix libsass bindings not found when using node-sass in Node?

Spread the love

To fix libsass bindings not found when using node-sass in Node, we upgrade to gulp-sass 2.

To do this, we run

npm uninstall --save-dev gulp-sass
npm install --save-dev gulp-sass@2

to uninstall the original version of gulp-sass with npm uninstall.

Then we install gulp-sass 2 with npm install.

By John Au-Yeung

Web developer specializing in React, Vue, and front end development.

Leave a Reply

Your email address will not be published. Required fields are marked *