9 lines
226 B
JavaScript
9 lines
226 B
JavaScript
module.exports = [
|
|
{
|
|
type: 'input',
|
|
name: 'createVueConfigJs',
|
|
message: 'Create vue.config.js (overrides if already existing)',
|
|
validate: input => ['Y', 'y', 'N', 'n'].includes(input),
|
|
default: 'Y'
|
|
},
|
|
] |