GregYankovoy / vue-cli-plugin-bootstrap-vue

vue-cli 3 plugin to add bootstrap-vue
MIT License
34 stars 2 forks source link

How to install an older plugin version 0.7.0? #29

Closed MithileshHinge closed 3 years ago

MithileshHinge commented 3 years ago

Problem: I need to document a way to create my Vue project from scratch. But the recent update has changes that break my structure. I add my own variables in global.scss in css loaderOptions in vue.config.js, unfortunately that is not being caught by webpack because the plugin overrides that option. So none of the variables in my custom global.scss are getting defined, giving build errors.

Possible solution: I just need to know if there's a way I can add older version of the plugin like so: vue add bootstrap-vue@0.7.0 If not, is there any other way to fix this problem?

MithileshHinge commented 3 years ago

Never mind, figured out the command I mentioned is exactly how you specify the version for a plugin. Wonder why there's nothing about it Vue CLI documentation.