0๐
In your project directory, run this command:
npm install โsave-dev @nuxtjs/vuetify
0๐
I had the same issue and resolved it, the problem was the NODE_ENV when the NODE_ENV is set to production, it doesnโt install the dev dependencies. Check the NODE_ENV.
-1๐
Please, remove your "@ nuxtjs / vuetify" from yours dependencies with the command:
npm uninstall @ nuxtjs / vuetify
And then, install the dependencie in dev, with the next command:
npm i @ nuxtjs / vuetify --save-dev
Good luck!
- [Vuejs]-Vue.js โ Registering the Chart Component via Webpack
- [Vuejs]-Render HTML from JSON datasource in Kendo Grid Column using Vue.js
Source:stackexchange.com