I have a project using Vuetify, my project is not bootstrapped by vue-cli
After using Vuetify for months(in production), I've found out that I didn't install vue-cli-plugin-vuetify
!
What does this plugin actually do?
As many CLI plugins it contains generator
to scaffold new Vuetify App - you can get overview what it does by looking at the set of questions it asks when executed
Second part is runtime (which for CLI plugin means when serve
or build
is executed) to extend Webpack config
VuetifyLoaderPlugin
responsible for treeshakingvue-loader
's transformAssetUrls configMost of the things can be done manually (look for Webpack install(ation)
on pages linked above), CLI plugin just make it easier for user (and that's the point of Vue CLI in general)