I am trying to use the gulpfile.js to convert the sass file to css file but it can't work

30 Views Asked by At

enter image description here

it tried typing gulp to build up the js file and compile it to create a new index.css file

1

There are 1 best solutions below

0
Tanya maheshwari On

Install gulp globally using command

npm install -g gulp

Then Install gulp locally inside your project folder:

npm install gulp --save-dev

Then run

npm gulp

The key step is to first install gulp globally.