From dda3e4b4f2b933fca7c94df60a65d715c884506b Mon Sep 17 00:00:00 2001 From: Vandivier Date: Tue, 5 Oct 2021 16:48:46 -0400 Subject: [PATCH] fix: host fix for windows --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 069322a..675ca2f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -196,7 +196,7 @@ gulp.task('qunit', () => { let serverConfig = { root, port: 8009, - host: '0.0.0.0', + host: 'localhost', name: 'test-server' } @@ -289,7 +289,7 @@ gulp.task('serve', () => { connect.server({ root: root, port: port, - host: '0.0.0.0', + host: 'localhost', livereload: true })