fix: host fix for windows

This commit is contained in:
Vandivier 2021-10-05 16:48:46 -04:00
parent 05e57dea66
commit dda3e4b4f2
1 changed files with 2 additions and 2 deletions

View File

@ -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
})