We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40017b4 commit 29dfd0aCopy full SHA for 29dfd0a
1 file changed
lib/browser-sync.js
@@ -468,7 +468,9 @@ BrowserSync.prototype.getExternalSocketConnector = function (opts) {
468
return connectUtils.socketConnector(
469
bs.options.withMutations(function (item) {
470
item.set("socket", item.get("socket").merge(opts));
471
- item.set("mode", "snippet");
+ if (bs.options.get("mode") !== "proxy") {
472
+ item.set("mode", "snippet");
473
+ }
474
})
475
);
476
};
0 commit comments