Next.js Discord

Discord Forum

next/image always putting w=3840 on image src url param

Unanswered
Keyhole wasp posted this in #help-forum
Open in Discord
Keyhole waspOP
these images are thumbnails and shoud not be 4k. I can't seem to figure out how to tell next/image to size them accordingly.

<Image
              src={src}
              title={imageTitle}
              alt={imageTitle}
              fill
              sizes="
            (min-width: 1024px) 205px,
            (min-width: 768px) 238px,
            333px
            "
              objectFit="contain"
            />

0 Replies