fix running server from subfolders - fixes #36

master
Sindre Sorhus 2014-06-06 12:03:51 +02:00
parent ddc9be9373
commit d53f3abfc6
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ gulp.task('default', ['clean'], function (cb) {
gulp.task('serve', ['styles'], function () {
browserSync.init(null, {
server: {
baseDir: ['app', '.tmp']
baseDir: [__dirname + '/app', __dirname + '/.tmp']
},
});
});