diff --git a/lib/core/nuxt.mjs b/lib/core/nuxt.mjs index 870273f2a5..8160adefc1 100644 --- a/lib/core/nuxt.mjs +++ b/lib/core/nuxt.mjs @@ -126,13 +126,12 @@ export default class Nuxt { return reject(err) } - const _host = host === '0.0.0.0' ? 'localhost' : host if (!this.options.test) { // eslint-disable-next-line no-console console.log( '\n' + - chalk.bgGreen.black(' OPEN ') + - chalk.green(` http://${_host}:${port}\n`) + chalk.bgGreen.black(' READY ') + + chalk.green(` Listening on ${host}:${port}\n`) ) }