Skip to content

Commit

Permalink
Update: config.jsからBrowserSyncのproxyを設定できるよう修正
Browse files Browse the repository at this point in the history
BrowserSyncのpoxy設定があった場合、browserプロパティを削除するようになった
  • Loading branch information
sable-virt committed Nov 17, 2015
1 parent 4d72675 commit 227432b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions gulp/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ gulp.task('server', function() {
},
notify: false
});
if (options.proxy) {
delete options.server;
}
return $.browser(options);
});
gulp.task('reload', function() {
Expand Down

0 comments on commit 227432b

Please sign in to comment.