vuetify-module
vuetify-module copied to clipboard
v-img not working!
vuetify-loader: "1.5.0" vuetify: "2.3.1"
PS: Even I place static url such as
https://i1.wp.com/www.scanphilosophy.com/wp-content/uploads/2015/07/img_44311.jpg
v-img
will never show any image.
I had the same problem in a custom nuxt-vuetify integration. Try to add the following to your nuxt.config.js
:
build: {
extend(config, { loaders }) {
loaders.vue.transformAssetUrls['v-img'] = 'src'
},
},
Please give feedback if this works for you.
I just ran into this. @P4sca1 's solution is working for me. I think it'd be nice to have this by default