Browse Source

Merge pull request #3075 from cashcat/patch1

fix npm start -- --host=0.0.0.0 unuseful
Hakim El Hattab 3 năm trước cách đây
mục cha
commit
2d050a88e2
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  1. 3 1
      gulpfile.js

+ 3 - 1
gulpfile.js

@@ -24,6 +24,7 @@ const autoprefixer = require('gulp-autoprefixer')
 
 const root = yargs.argv.root || '.'
 const port = yargs.argv.port || 8000
+const host = yargs.argv.host || 'localhost'
 
 const banner = `/*!
 * reveal.js ${pkg.version}
@@ -289,7 +290,8 @@ gulp.task('serve', () => {
     connect.server({
         root: root,
         port: port,
-        host: 'localhost',
+        host: host,
+        //host: '0.0.0.0',
         livereload: true
     })