When I create a fresh vue-cli
project via this command
vue create hello-word
and this command to install vuetify
vue add vuetify
Then I saw my git changes like this
Two new dependencies have been installed in package.json
.
vue-cli-plugin-vuetify
vuetify-loader
At first glance, I thought vue.config.js
has specified using these two, but it's content only have these code.
module.exports = {
"transpileDependencies": [
"vuetify"
]
}
So, how does vue-cli
know I've installed this new vuetify loader?
Does it automatically pick those up?