Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (88)
Thanks to jonrsharpe.
Worked for me:
- install / downgrade node.js to a stable version (LTS) like 14.15.0
- install the compatible node-sass version via
npm install [email protected]
; you can find the list here, or even installgulp-sass
withnpm i gulp-sass --save-dev
.
direct link to list
None of the above worked for me. So, instead I uninstalled node-sass and installed just sass. No more errors!
npm uninstall node-sass
npm i sass
This command in the console worked for me:
npm rebuild node-sass