From c5578f8822de69eb0d9b7d9efbcfbaef99d94bcc Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Sat, 5 Aug 2017 23:25:18 +0430 Subject: [PATCH] green OPEN message nuxt branding --- lib/core/nuxt.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/nuxt.js b/lib/core/nuxt.js index 7ef1bd4482..3469b9188e 100644 --- a/lib/core/nuxt.js +++ b/lib/core/nuxt.js @@ -59,7 +59,7 @@ export default class Nuxt extends Tapable { // Show Open URL let _host = host === '0.0.0.0' ? 'localhost' : host // eslint-disable-next-line no-console - console.log('\n' + chalk.bold(chalk.bgBlue.black(' OPEN ') + chalk.blue(` http://${_host}:${port}\n`))) + console.log('\n' + chalk.bold(chalk.bgGreen.white(' OPEN ') + chalk.green(` http://${_host}:${port}\n`))) // Close server on nuxt close this.plugin('close', () => new Promise((resolve, reject) => {