javascript - 'font-awesome/less/font-awesome.less' wasn't found -
i writing task application using gulp minify css
gulp.task('handle-styles', function () { return gulp.src('app/styles/*.less') .pipe(less()) .pipe(cleancss()) .pipe(concat('main.css')) .pipe(gulp.dest('./dist/')) })
getting error :
[14:46:54] starting 'handle-styles'... potentially unhandled rejection [2] 'font-awesome/less/font-awesome.less' wasn't found.
and showing error in main.less file line no.2
main.less:
@import 'font-awesome/less/font-awesome'; @fa-font-path: 'font-awesome/fonts'; @import '~bootstrap/less/bootstrap'; @icon-font-path: '~bootstrap/fonts/';
font-awesome version 4.2.0
any
Comments
Post a Comment