Created
June 27, 2015 14:02
This is the initial gulpfile forthe React Bootstrap tutorials.
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
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