Good afternoon, please tell me how to solve the problem. Here I give the command in the gulpfile.js file:

var gulp = require('gulp'), sass = require('gulp-sass'); gulp.task('sass', function(){ return gulp.src('app/sass/main.sass') .pipe(sass()) .pipe(gulp.dest('app/css')) }); 

The main.sass document has already been created. Go to the command line and enter gulp sass . Next, an error occurs:

module.js 583 return process.dlopen (path._makeLong (filename));
Error:% 1 is not a valid Win32 application.
\? \ C: \ Users \ j-ku2 \ Desktop \ MyProject \ node_modules \ node-sass \ vendor \ win32-x64-48 \ binding.node

Tell me what to do with it? The second day I toil.

  • one
    And how did you install npm i --save-dev gulp-sass? I have the same problem solved by installing npm i --save-dev gulp-sass @ beta! - HamSter

0