fix npm start -- --host=0.0.0.0 unuseful

This commit is contained in:
cashcat 2021-11-21 12:23:28 +08:00
parent c79f4b5a4f
commit 13d0f086cc

View File

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