We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c80cf46 commit fc8b688Copy full SHA for fc8b688
packages/server/src/cli.ts
@@ -314,8 +314,8 @@ const bold = (text: string | number): string | number => {
314
logger.info("Telemetry is disabled");
315
}
316
317
- let schema = options.allowHttp ? "http" : "https";
318
- const url = `${schema}://localhost:${options.port}/`;
+ const protocol = options.allowHttp ? "http" : "https";
+ const url = `${protocol}://localhost:${options.port}/`;
319
logger.info(" ");
320
logger.info("Started (click the link below to open):");
321
logger.info(url);
0 commit comments