Skip to content

Commit

Permalink
Issue-1171: Include protocol with logged urls (#1173)
Browse files Browse the repository at this point in the history
  • Loading branch information
DevLab2425 authored and thescientist13 committed Nov 9, 2023
1 parent c08c9c0 commit 6335472
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/develop.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const runDevServer = async (compilation) => {

(await getDevServer(compilation)).listen(port, () => {

console.info(`Started local development server at localhost:${port}`);
console.info(`Started local development server at http://localhost:${port}`);

const servers = [...compilation.config.plugins.filter((plugin) => {
return plugin.type === 'server';
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/commands/serve.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const runProdServer = async (compilation) => {
const server = (hasDynamicRoutes && !compilation.config.prerender) || hasApisDir ? getHybridServer : getStaticServer;

(await server(compilation)).listen(port, () => {
console.info(`Started server at localhost:${port}`);
console.info(`Started server at http://localhost:${port}`);
});
} catch (err) {
reject(err);
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-renderer-puppeteer/src/plugins/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class PuppeteerServer extends ServerInterface {
const { port } = this.compilation.config.devServer;

(await getDevServer(this.compilation)).listen(port, async () => {
console.info(`Started puppeteer prerender server at localhost:${port}`);
console.info(`Started puppeteer prerender server at http://localhost:${port}`);
});
} else {
await Promise.resolve();
Expand Down

0 comments on commit 6335472

Please sign in to comment.