0

I want to install blur admin theme with angular js

I have follow steps to install blur admin theme from below site

https://akveo.github.io/blur-admin/articles/002-installation-guidelines/

I got the error as below , enter image description here

I find for solution for that and found below commands to run

npm update
npm install gulp-sass

then again run

gulp serve 

but still same error I got

In my system git is installed and my nodejs version is 8.9.4

Please help me to resolve this issue.

hetal gohel
  • 335
  • 9
  • 21

1 Answers1

0

Seems like you have not installed gulp-sass module.

Install it by running npm following command

npm install gulp-sass@latest --save-dev

Make sure you have deleted node_modules folder before install module.

Gopal Joshi
  • 2,350
  • 22
  • 49
  • I have installed gulp-sass by npm install gulp-sass command but it not worked. but above solution for latest version installation it worked. – hetal gohel Mar 01 '18 at 12:44