We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84a30fa commit f9527d4Copy full SHA for f9527d4
1 file changed
packages/server/src/cli.ts
@@ -235,7 +235,7 @@ export class Entry extends Command {
235
logger.warn("Launched without authentication.");
236
}
237
238
- const url = flags["allow-http"] ? `http://localhost:${flags.port}/` : `https://localhost:${flags.port}/`;
+ const url = `http${flags["no-auth"] ? "s" : ""}://localhost:${flags.port}/`;;
239
logger.info(" ");
240
logger.info("Started (click the link below to open):");
241
logger.info(url);
0 commit comments