Last active
February 23, 2018 09:46
-
-
Save ixahmedxi/556faf7a364d6b9517a180e480564e4f to your computer and use it in GitHub Desktop.
Gulp BrowserSync
This file contains 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
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