From de7c92a8f58d1a4135c3cbef5ab193a9873f3f8d Mon Sep 17 00:00:00 2001 From: VasekProchazka Date: Tue, 8 Sep 2020 08:29:41 +0200 Subject: [PATCH 1/2] Add host to gulpfile --- gulpfile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/gulpfile.js b/gulpfile.js index 64152baa7ba..b7aab3f3737 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -110,6 +110,7 @@ function watch(done) { connect.server({ https: argv.https, port: port, + host: argv.host, root: './', livereload: true }); From 6874dee6f8b5b678b586a5eaf1d7c78f96467cf5 Mon Sep 17 00:00:00 2001 From: VasekProchazka Date: Tue, 8 Sep 2020 08:53:27 +0200 Subject: [PATCH 2/2] Edit arg.host to FAKE_SERVER_HOST --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index b7aab3f3737..879e34ae588 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -110,7 +110,7 @@ function watch(done) { connect.server({ https: argv.https, port: port, - host: argv.host, + host: FAKE_SERVER_HOST, root: './', livereload: true });