Skip to content

Commit

Permalink
feat: host option add type paramater
Browse files Browse the repository at this point in the history
  • Loading branch information
btea committed Aug 13, 2023
1 parent c624cc0 commit cf2faba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vite/src/node/cli.ts
Expand Up @@ -116,7 +116,7 @@ cli
.command('[root]', 'start dev server') // default command
.alias('serve') // the command is called 'serve' in Vite's API
.alias('dev') // alias to align with the script name
.option('--host [host]', `[string] specify hostname`)
.option('--host [host]', `[string] specify hostname`, { type: [String] })
.option('--port <port>', `[number] specify port`)
.option('--https', `[boolean] use TLS + HTTP/2`)
.option('--open [path]', `[boolean | string] open browser on startup`)
Expand Down

0 comments on commit cf2faba

Please sign in to comment.