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 10a63d0 commit 09d8e3aCopy full SHA for 09d8e3a
packages/cli/src/serve/output.rs
@@ -654,7 +654,18 @@ impl Output {
654
655
// todo(jon) should we write https ?
656
let address = match state.server.displayed_address() {
657
- Some(address) => format!("http://{}", address).blue(),
+ Some(address) => format!(
658
+ "http://{}{}",
659
+ address,
660
+ state
661
+ .runner
662
+ .client
663
+ .build
664
+ .base_path()
665
+ .map(|f| format!("/{f}/"))
666
+ .unwrap_or_default()
667
+ )
668
+ .blue(),
669
None => "no server address".dark_gray(),
670
};
671
0 commit comments