0 votes
in VueJS by
How do you allow plugin prompts?

1 Answer

0 votes
by

Each plugin can inject its own prompts during the project creation process irrespective of preset declarations using prompts: true setting

For example, user can pick their own ESLint config using the below configuration

{
  "plugins": {
    "@vue/cli-plugin-eslint": {
      // let the users pick their own ESLint config
      "prompts": true
    }
  }
}

Related questions

0 votes
asked Sep 14, 2023 in VueJS by AdilsonLima
0 votes
asked Sep 12, 2023 in VueJS by AdilsonLima
...