0 votes
in VueJS by
What is the versioning behavior in preset plugins?

1 Answer

0 votes
by

You can explicitly specify versions of the plugins being used.

{
  "plugins": {
    "@vue/cli-plugin-eslint": {
      "version": "^3.0.0",
      // ... other options for this plugin
    }
  }
}

For official plugins, the CLI will automatically use the latest version available in the registry

...