Skip to content

Instantly share code, notes, and snippets.

@easydevtuts
Created June 27, 2015 14:02
Show Gist options
  • Save easydevtuts/dc8cccbefa815f4774b3 to your computer and use it in GitHub Desktop.
Save easydevtuts/dc8cccbefa815f4774b3 to your computer and use it in GitHub Desktop.
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