Skip to content
Advertisement

Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (93)

Getting below error after installed latest node.js (v16.13.1)

Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (93) For more information on which environments are supported please see: https://github.com/sass/node-sass/releases/tag/v4.14.1 I have created static pages for my application and use sass and gulp

I have a static pages and using Sass in the page and use gulp to run on the browser.(npm install). Below are the version which worked my application:

  • Node.js – 12.18.0
  • gulp – “4.0.2”
  • “gulp-sass”: “4.1.0”

Package.json file

JavaScript

Even using command npm rebuild node-sass is not changing anything.

Advertisement

Answer

gulp-sass 4.1.0 uses node-sass 4, and node-sass 4 does not support Node.js 16, as indicated in this table.

To support Node.js 16, upgrade gulp-sass: the latest version today is 5.1.0:

JavaScript

This will give you node-sass 7, which supports all current versions of Node.js, including Node.js 16.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement