Created
August 10, 2016 21:00
-
-
Save cicorias/484f0f13e78ca1cd6a9f7b28c4bcc323 to your computer and use it in GitHub Desktop.
Simple server using Gulp and Browser-sync...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var browserSync = require('browser-sync'); | |
// Static server. | |
gulp.task('browser-sync', function() { | |
browserSync({ | |
server: { | |
baseDir: './' | |
} | |
}); | |
}); | |
gulp.task('default', ['browser-sync']); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment