nuxt / image

Plug-and-play image optimization for Nuxt applications.
https://image.nuxt.com
MIT License
1.28k stars 253 forks source link

NuxtPicture doesn't accept resize in modifiers #1341

Open avxkim opened 2 months ago

avxkim commented 2 months ago

Nuxt 3.11.2 @nuxt/image 1.6.0

usage

          <NuxtPicture
            class="image"
            :src="src"
            :width="imgWidth"
            :height="imgHeight"
            ismap
            :loading="index === 0 ? 'eager' : 'lazy'"
            :modifiers="{ resize: { width: 200, height: 200  } }"
            preload
            decoding="auto"
          />

has no effect, because my image is size 2000px width and 2000px height, it doesn't resize it to a 200px, 200px