2022-08-26 15:47:29 +00:00
|
|
|
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.
|
2021-11-19 12:22:27 +00:00
|
|
|
* @type {string[]}
|
2021-08-11 21:48:33 +00:00
|
|
|
* @version 2
|
2021-04-15 18:49:29 +00:00
|
|
|
*/
|
2021-03-28 20:14:04 +00:00
|
|
|
badgeMessages: [],
|
2021-04-15 18:49:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Change the color of the 'Nuxt.js' title in the CLI banner.
|
2021-08-11 21:48:33 +00:00
|
|
|
* @version 2
|
2021-04-15 18:49:29 +00:00
|
|
|
*/
|
2021-03-28 20:14:04 +00:00
|
|
|
bannerColor: 'green'
|
2022-08-26 15:47:29 +00:00
|
|
|
})
|