Skip to content

Commit c80cf46

Browse files
author
John McCambridge
committed
Remove --no-auth as a http candidate
1 parent 21f5ef2 commit c80cf46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/server/src/cli.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ const bold = (text: string | number): string | number => {
314314
logger.info("Telemetry is disabled");
315315
}
316316

317-
let schema = (options.noAuth || options.allowHttp) ? "http" : "https";
317+
let schema = options.allowHttp ? "http" : "https";
318318
const url = `${schema}://localhost:${options.port}/`;
319319
logger.info(" ");
320320
logger.info("Started (click the link below to open):");

0 commit comments

Comments
 (0)