Skip to content

Instantly share code, notes, and snippets.

@cicorias
Created August 10, 2016 21:00
Show Gist options
  • Save cicorias/484f0f13e78ca1cd6a9f7b28c4bcc323 to your computer and use it in GitHub Desktop.
Save cicorias/484f0f13e78ca1cd6a9f7b28c4bcc323 to your computer and use it in GitHub Desktop.
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']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment