Skip to content

Commit

Permalink
fix: added missing cli argument docs
Browse files Browse the repository at this point in the history
  • Loading branch information
arctic-hen7 committed Dec 30, 2021
1 parent 8274678 commit 7c9fb4a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/perseus-cli/src/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,10 @@ pub struct ExportOpts {
/// Serve the generated static files locally
#[clap(short, long)]
pub serve: bool,
/// Where to host your exported app
#[clap(long, default_value = "127.0.0.1")]
pub host: String,
/// The port to host your exported app on
#[clap(long, default_value = "8080")]
pub port: u16,
}
Expand Down

0 comments on commit 7c9fb4a

Please sign in to comment.