Skip to content

Instantly share code, notes, and snippets.

@easydevtuts
Created June 27, 2015 14:02
This is the initial gulpfile forthe React Bootstrap tutorials.
var gulp = require('gulp');
var browserSync = require('browser-sync').create();
// Static server
gulp.task('browser-sync', function() {
browserSync.init({
server: {
baseDir: "./"
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment