(1) 问题描述
    Error: Node Sass does not yet support your current environment: OS X 64-bit with Unsupported runtime (64) For more information on which environments are supported please see:
    image.png

    (2)解决方案:
    不用回退node版本,而是升级node-sass。update你的sass版本即可:

    • npm rebuild node-sass

    或者自己手动升级:
    1.先卸载

    • npm uninstall —save node-sass

    2.清除缓存

    • npm cache clean -f

    3.升级node-sass模块

    • npm install —save node-sass


    883DEE27-1030-41AE-9E2C-E1E845A3644A的副本.png