yistc
Results
2
comments of
yistc
That's due to the use of `@nuxt/image` module. If you are not using the module, simply remove it from your `nuxt.config.ts` ```ts export default defineNuxtConfig({ modules: [ '@vueuse/nuxt', // '@nuxt/image',...
> I didn't find a way, though, to opt out `@nuxt/content` from using the package Actually we can do this, by setting `useNuxtImage` to `false` in runtime config. ```ts runtimeConfig:...