master
Sindre Sorhus 2014-06-30 22:23:24 +02:00
parent 0665b24205
commit 49bb52e54b
1 changed files with 4 additions and 3 deletions

View File

@ -146,10 +146,11 @@ gulp.task('serve', function () {
});
// Build and serve the output from the dist build
gulp.task('serve:dist', ['default'], function() {
browserSync.init(null, {
gulp.task('serve:dist', ['default'], function () {
browserSync({
notify: false,
server: {
baseDir: "./dist/"
baseDir: 'dist'
}
});
});