Skip to content

Commit

Permalink
🔀 Make started dev server link clickable. (#17)
Browse files Browse the repository at this point in the history
* make started dev server link clickable

* make started dev server link clickable
  • Loading branch information
enoonan authored Mar 30, 2024
1 parent d030b12 commit b280492
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lustre_dev_tools/esbuild.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ pub fn serve(host: String, port: String, spa: Bool) -> Cli(any, Nil, Error) {
False -> flags
}

use <- cli.success("Started dev server at " <> host <> ":" <> port <> "...")
use <- cli.success("Started dev server at http://" <> host <> ":" <> port)
use _ <- cli.try(
cli.exec(run: "./build/.lustre/bin/esbuild", in: root, with: options),
fn(pair) { BundleError(pair.1) },
Expand Down

0 comments on commit b280492

Please sign in to comment.