RA
Size: a a a
RA
RA
V🦖
RA
OZ
OZ
V🦖
V🦖
OH
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%)
/>
)
}
A
A
A
A
PD
PD
A