diff --git a/lib/cli/commands/serve.js b/lib/cli/commands/serve.js index 9e65000d..18fb78c5 100644 --- a/lib/cli/commands/serve.js +++ b/lib/cli/commands/serve.js @@ -115,7 +115,7 @@ serve.handler = async function(argv) { browserUrl += relPath; } const open = require("open"); - open(browserUrl); + open(browserUrl, {url: true}); } };