Node Sass couldn't find a binding for your current environment

前端 未结 30 2603
说谎
说谎 2020-11-29 14:23

I am having issues building an app because node-sass keeps failing with the error.

ERROR in Missing binding /Users/warren/Sites/random-docs/my-cms/nod

30条回答
  •  無奈伤痛
    2020-11-29 15:07

    This happens when in your workstation you run an update of Node.js and you are using node-sass globally.

    So you should uninstall node-sass globally

    npm uninstall -g node-sass
    

    And then you have to install it globally, again

    npm install -g node-sass
    

提交回复
热议问题