We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Related to #58 V4+ now has fetchPriority which is great, but not supported in all browsers.
Feature request: Preload on Image like next/image https://nextjs.org/docs/api-reference/next/image#priority https://web.dev/preload-responsive-images/
Image
next/image
I have currently created my own PreloadImage component with addition to <Image>
<Image>
<Head> <link rel="preload" as="image" href={image.responsiveImage.src} imagesrcset={image.responsiveImage.srcSet} imagesizes={image.responsiveImage.sizes} /> </Head> <Image ...
Would be great to have this as prop to be able to optimize for LCP
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Related to #58
V4+ now has fetchPriority which is great, but not supported in all browsers.
Feature request: Preload on
Image
likenext/image
https://nextjs.org/docs/api-reference/next/image#priority
https://web.dev/preload-responsive-images/
I have currently created my own PreloadImage component with addition to
<Image>
Would be great to have this as prop to be able to optimize for LCP
The text was updated successfully, but these errors were encountered: