cicorias
8/10/2016 - 9:00 PM

Simple server using Gulp and Browser-sync...

Simple server using Gulp and Browser-sync...

var gulp = require('gulp');  
var browserSync = require('browser-sync');

// Static server.
gulp.task('browser-sync', function() {  
  browserSync({
    server: {
      baseDir: './'
    }
  });
});

gulp.task('default', ['browser-sync']);