image
image copied to clipboard
Plug-and-play image optimization for Nuxt applications.
Images with `fit="contain"` get a black letterbox which I would like to change. ```html ``` Is it possible to change the letterbox color from black to something else?
We live in a time when websites should work on a huge range of devices with different sizes and densities, it is not enough to have only one version of...
Hi, Can't seem to find a solution for this. After installing and putting @nuxt/image in the “modules" array in the nuxt.config file, I got this issue displayed on the page:...
Again, I haven't actually played with this yet. But what would be cool is the ability to mark an image as a lazy preload (similar to lazysizes). What it does...
On local dev (`npm run dev`) my 404 page is returning this error:  ``` ERROR [Vue warn]: Error in render: "TypeError: Cannot read property '_img' of undefined" 14:55:22 found...
I'm trying https://image.nuxtjs.org/nuxt-picture but my results aren't matching the documentation. The documentation says: > When you use modern formats like webp in the component, a fallback image with jpeg format...
We have a component that uses direct access to `$img.getImage` to generate image URLs. To test this component we write simple jest snapshot tests. Unfortunately I have not been able...
Is there any way to use cloudinary placeholder image with blur ? I could not manage to make it work and at the time, when the page is loading, the...
Greetings. I have a setup running Nuxt, with Nuxt/Images and NetlifyCMS as a backend. These are my nuxt.config.js folder settings: ``` dir: 'assets/uploads', staticFilename: '[publicPath]/img/generated/[name]-[hash][ext]', ``` I expected the bypass...
Detecting image size has benefits on server-side rendering and prevent CLS for server-rendered pages. But it seems tricky and inefficient when it comes to client-side rendering. - As fetch API...