Skip to content

Commit

Permalink
fix: first run browserSync images not show
Browse files Browse the repository at this point in the history
  • Loading branch information
karpusa committed Dec 23, 2016
1 parent 70f2478 commit 359b379
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ var gulp = require('gulp'),

// serve files
gulp.task('serve', function() {
console.log('running server');
browserSync({
browser: "chrome",
server: {
Expand Down Expand Up @@ -87,7 +86,7 @@ gulp.task('clean', function () {
});

// default task to be run with gulp
gulp.task('default', ['clean', 'image', 'nunjucks', 'less', 'serve']);
gulp.task('default', ['clean', 'nunjucks', 'less', 'serve', 'image']);

// build
gulp.task('build', ['clean', 'image', 'nunjucks', 'less']);

0 comments on commit 359b379

Please sign in to comment.