Node Sass does not yet support your current environment: Linux 64-bit with false

前端 未结 19 1736
悲&欢浪女
悲&欢浪女 2020-12-02 11:27

Getting this error on Arch Linux with node-sass. I\'m using it with gulp-sass.

Node Sass does not yet support your current environment: Linux 64-bit with fal         


        
19条回答
  •  误落风尘
    2020-12-02 12:10

    Uninstall and reinstall node-sass and it will find missing binary for itself.

    npm uninstall --save-dev node-sass
    npm install --save-dev node-sass
    

    If issue is not resolved using above commands, there may be problem with your node version. Check that your node version supports node-sass version. Chose a stable node version and repeat above commands to fix this issue.

    Below is compatibility table of node with node-sass:-

    If issue is still not fixed, check node-sass supported environment's list:- https://github.com/sass/node-sass/releases/

提交回复
热议问题