image icon indicating copy to clipboard operation
image copied to clipboard

Plug-and-play image optimization for Nuxt applications.

Results 430 image issues
Sort by recently updated
recently updated
newest added

We are working on a website where we use both the `ipx` and `prismic` provider. When we run `npm run generate`, we see inside `.output/public/_ipx` that the ipx images from...

The TypeScript definition of the function yielded by [`useImage`](https://image.nuxt.com/usage/use-image) has changed and now causes typing errors when willing to use its `provider` option. That option was typed as `string`, but...

Add `fetchpriority` to `ImgHTMLAttributes` type ``` Object literal may only specify known properties, and 'fetchpriority' does not exist in type 'ImgHTMLAttributes'.ts-plugin(2353) NuxtPicture.d.vue.ts(6, 5): The expected type comes from property 'imgAttrs'...

I am currently updating two independent Nuxt3 apps to Nuxt 4. In both cases, NuxtImg throws error 500 when the packageManager Version is anything higher than "packageManager": "[email protected]", > amazon-logo.png:1...

I made the following configuration in `nuxt.config.ts`: ```typescript export default defineNuxtConfig({ // other configs app: { baseURL: 'xxxxx' // my base url read from .env }, // other configs })...

NuxtImage [v2.0.0](https://github.com/nuxt/image/releases/tag/v2.0.0) ```vue ``` ```js export default defineNuxtConfig({ image: { densities: [4] } }) ``` This config gives this result ```html ``` If I only want 1x and use this...

I'm using `InstanceType` to create a custom NuxtImg component with some default configs that still pass-through all props of `NuxtImg`: ```ts type NuxtImgProps = InstanceType['$props'] interface Props extends /* @vue-ignore...

Please advise if this is the best way to use `NuxtImg` with NuxtHub. Basically, I added route rules for the blob server route and `@nuxt/image` alias. **It works**. but I...

### πŸ”— Linked issue closes https://github.com/nuxt/image/pull/1268 ### ❓ Type of change - [ ] πŸ“– Documentation (updates to the documentation or readme) - [x] 🐞 Bug fix (a non-breaking change...

IPX does not have the `svg` format modifier, this means that if you add in your nuxt config ```js image: { ipx: { modifiers: { format: 'webp', } } }...