imagekit-react
imagekit-react copied to clipboard
Image doesn't load if lqip active is set to false.
<IKImage lqip={{ active: true }} {...other} />
works fine but if you do <IKImage lqip={{ active: false }} {...other} />
the image never loads. The workaround is to make an object that is undefined:
let lqip: LQIP | undefined = { active: true };
if (media.type === MediaType.Video) {
path += "/ik-thumbnail.jpg";
lqip = undefined;
}
return (
<IKImage
lqip={lqip}
{...other}
/>