Skip to content

Instantly share code, notes, and snippets.

@martin-brennan
Created January 27, 2015 01:56
Show Gist options
  • Save martin-brennan/62c240152194a4dbdd09 to your computer and use it in GitHub Desktop.
Save martin-brennan/62c240152194a4dbdd09 to your computer and use it in GitHub Desktop.
Gulp Livereload
gulp.task('startServer', function () {
// restart the server
gulp.src('.')
.pipe(webserver({
livereload: true,
directoryListing: false,
open: true
}));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment