Created
January 27, 2015 01:56
-
-
Save martin-brennan/62c240152194a4dbdd09 to your computer and use it in GitHub Desktop.
Gulp Livereload
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
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