You are browsing Nuxt 2 docs. Go to Nuxt 3 docs, or learn more about Nuxt 2 Long Term Support.


The cli property

Nuxt lets you customize the CLI configuration.


badgeMessages

  • Type Array

Add a message to the CLI banner.

nuxt.config.js
cli: {
  badgeMessages: ['Hello World!']
}

bannerColor

  • Type: String
    • Default: 'green'

Change the color of the 'Nuxt' title in the CLI banner.

Available colors:

black, red, green, yellow, blue, magenta, cyan, white, gray, redBright, greenBright, yellowBright, blueBright, magentaBright, cyanBright, whiteBright

nuxt.config.js
export default {
  cli: {
    bannerColor: 'yellow'
  }
}