We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 191d891 commit 231da6aCopy full SHA for 231da6a
bin/vuepress.js
@@ -27,8 +27,9 @@ program
27
.description('start development server')
28
.option('-p, --port <port>', 'use specified port (default: 8080)')
29
.option('-h, --host <host>', 'use specified host (default: 0.0.0.0)')
30
- .action((dir = '.', { host, port }) => {
31
- wrapCommand(dev)(path.resolve(dir), { host, port })
+ .option('--debug', 'start development server in debug mode')
+ .action((dir = '.', { host, port, debug }) => {
32
+ wrapCommand(dev)(path.resolve(dir), { host, port, debug })
33
})
34
35
program
0 commit comments