Skip to content

Instantly share code, notes, and snippets.

@ixahmedxi
Last active February 23, 2018 09:46
Show Gist options
  • Save ixahmedxi/556faf7a364d6b9517a180e480564e4f to your computer and use it in GitHub Desktop.
Save ixahmedxi/556faf7a364d6b9517a180e480564e4f to your computer and use it in GitHub Desktop.
Gulp BrowserSync
const gulp = require('gulp')
const browserSync = require('browser-sync').create()
gulp.task('browser-sync', () => {
browserSync.init({
server: {
baseDir: "./"
}
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment