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

前端 未结 30 2634
说谎
说谎 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:06

    in some cases you need to uninstall and install node-sass library. Try:

    npm uninstall --save node-sass
    

    and

    npm install --save node-sass
    

    look at this its work for me, Stack link here

提交回复
热议问题