When I load vuetify via the vue-cli3, I get an error when i do npm run serve, saying there is a missing loader.
Docs etc and searches have come up blank.
This is
I had the same problem. This whole thing worked out for me.
vue create your-app
cd your-app
npm i --save-dev --no-optional vuetify-loader vue-cli-plugin sass node-sass sass-loader
npm i
vue add vuetify
I know this looks redundant but it worked.
do a npm install
after adding vuetify as vue add vuetify
then start server by
npm run serve
Try to manually install the package:
npm install vuetify-loader -D
I got the same error when I cloned a repository and I installed the dependencies only on the master branch. When I switched to a different branch (git checkout different_branch
) I forgot to install the dependencies there. So make sure you installed the dependencies before you launch the server.