Answers for "node-sass version 4"

40

Error: Node Sass version 5.0.0 is incompatible with ^4.0.0.

with npm =>
1.npm uninstall node-sass
2.npm install [email protected]
with yarn => 
1.yarn remove node-sass
2.yarn remove [email protected]
Posted by: Guest on November-17-2020
11

Error: Node Sass version 5.0.0 is incompatible with ^4.0.0.

with npm =>
1. npm uninstall node-sass
2. npm install [email protected]
with yarn => 
1. yarn remove node-sass
2. yarn add [email protected]

// ^ Update to MR J's post
Posted by: Guest on November-28-2020
0

node-sass

var sass = require('sass');

sass.render({
  file: scss_filename
}, function(err, result) {
  /* ... */
});

// OR

var result = sass.renderSync({
  file: scss_filename
});
Posted by: Guest on March-12-2021

Code answers related to "node-sass version 4"

Code answers related to "Javascript"

Browse Popular Code Answers by Language