The cli Property
Nuxt.js 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'
- Default:
Change the color of the 'Nuxt.js' 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'
}
}
Contributors












잘못된 부분이 있거나 이 문서에 기여하고 싶으신가요? GitHub에서 이 페이지를 수정해주세요!