From 14849282379535e0990fda5cd3988a03eb5553f3 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Mon, 2 Apr 2018 15:42:29 +0430 Subject: [PATCH] chore: add http:// to ready message --- lib/core/nuxt.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/nuxt.js b/lib/core/nuxt.js index d8354bf7e5..0452a28fc8 100644 --- a/lib/core/nuxt.js +++ b/lib/core/nuxt.js @@ -126,8 +126,8 @@ export default class Nuxt { return reject(err) } - const hostPort = chalk.underline.blue(`${host}:${port}`) - this.readyMessage = `Listening on ${hostPort}` + const listenURL = chalk.underline.blue(`http://${host}:${port}`) + this.readyMessage = `Listening on ${listenURL}` // Close server on nuxt close this.hook(