Skip to content

Commit

Permalink
Add gulpfile.js for browser start-up
Browse files Browse the repository at this point in the history
  • Loading branch information
blue-goheimochi committed Feb 27, 2015
1 parent e13af57 commit 1634aba
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions gulpfile.js
@@ -0,0 +1,11 @@
var gulp = require('gulp');
var browserSync = require('browser-sync');

gulp.task('default', function(){
browserSync({
server: {
baseDir: "./public_html",
port: 8080
}
});
});

0 comments on commit 1634aba

Please sign in to comment.