TO
Size: a a a
TO
PK
VB
ДЗ
Y
Y

Y

UT
Y
UT
か
AP
IS
か
か
IS
PD
<Image
src="me.png"
alt="Picture of the author"
width={500}
height={500}
quality={80} // работает
/>
import Image from 'next/image'
const myLoader = ({ src, width, quality }) => {
return `https://mysite.com/${src}?w=${width}&q=$quality`
}
const MyImage = (props) => {
return (
<Image
loader={myLoader}
src="me.png"
alt="Picture of the author"
width={500}
height={500}
quality={80} // в этом случае не работает(всегда 100%)
/>
)
}
ㅤ