Snookums
Snookums

Reputation: 1340

How to remove vuetify installed using vue cli?

I installed vuetify using the command vue add vuetify, but an error as below occurred because I didn't create the project using vue create <project>, instead, I used vue init <template> <project>. enter image description here Then, my project cannot run anymore. When I issued npm start, tons of errors occurred. The screenshot below is one of them: enter image description here Could someone teach me how to recover from these errors? Can I remove this plugin?
Or did it just destroy my project and I have to create a new one and start from scratch again? Thanks

Upvotes: 5

Views: 15726

Answers (1)

Kshitij Dhyani
Kshitij Dhyani

Reputation: 833

You can try

npm uninstall vue-cli-plugin-vuetify

removes veutify as a dependency

Cross verify in `package.json' file

Upvotes: 3

Related Questions