diff --git a/src/cli/dev.ts b/src/cli/dev.ts index 08d0e55..9ca6f63 100644 --- a/src/cli/dev.ts +++ b/src/cli/dev.ts @@ -268,7 +268,7 @@ export async function dev(opts: { port: number, open: boolean }) { if (first) { first = false; - console.log(`${clorox.bold.cyan(`> Listening on localhost:${port}`)}`); + console.log(`${clorox.bold.cyan(`> Listening on http://localhost:${port}`)}`); if (opts.open) child_process.exec(`open http://localhost:${port}`); } }); diff --git a/src/cli/start.ts b/src/cli/start.ts index e1c821d..9c3cb85 100644 --- a/src/cli/start.ts +++ b/src/cli/start.ts @@ -34,6 +34,6 @@ export async function start(dir: string, opts: { port: number, open: boolean }) }); await ports.wait(port); - console.log(`${clorox.bold.cyan(`> Listening on localhost:${port}`)}`); + console.log(`${clorox.bold.cyan(`> Listening on http://localhost:${port}`)}`); if (opts.open) child_process.exec(`open http://localhost:${port}`); } \ No newline at end of file