Nuxt/packages/schema/src/config/cli.ts

17 lines
345 B
TypeScript
Raw Normal View History

import { defineUntypedSchema } from 'untyped'
export default defineUntypedSchema({
2021-04-15 18:49:29 +00:00
/**
* Add a message to the CLI banner by adding a string to this array.
* @type {string[]}
* @version 2
2021-04-15 18:49:29 +00:00
*/
badgeMessages: [],
2021-04-15 18:49:29 +00:00
/**
* Change the color of the 'Nuxt.js' title in the CLI banner.
* @version 2
2021-04-15 18:49:29 +00:00
*/
bannerColor: 'green'
})