Skip to content

Commit

Permalink
Make server URL "cmd + click"able (#275)
Browse files Browse the repository at this point in the history
Using things like iTerm2 I can hit cmd and click a link to open it.
  • Loading branch information
Phil Sturgeon authored and webpro committed Nov 8, 2019
1 parent 7bbe1a8 commit 867966d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ module.exports = async () => {

const server = app.listen(port);

console.log(`Reveal-server started at ${host}:${port}`); // eslint-disable-line no-console
console.log(`Reveal-server started at http://${host}:${port}`); // eslint-disable-line no-console

return [server, `http://${host}:${port}/${initialPath}`];
};

0 comments on commit 867966d

Please sign in to comment.