Browse Source

fix: host fix for windows

Vandivier 3 years ago
parent
commit
dda3e4b4f2
1 changed files with 2 additions and 2 deletions
  1. 2 2
      gulpfile.js

+ 2 - 2
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
     })