python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Preload image urls using new Image()
I'm trying to preload or prefetch remote images in my photo gallery but it seems that new Image() conflicts with the nextjs's next/image.
This code works fine before(using CRA) I migrated to nextjs.
...
rad182
Votes: 0
Answers: 3
Fallback for Next JS Image component
In Next JS Image component for using images from external URL we've to specify the base URL in next.config.js but what if the external urls are dynamic i.e., we don't know from where the images are co...
Rishab Sharma
Votes: 0
Answers: 1
Next JS Browser support for Image and Script components
Are Image and Script components from Next JS supported on all browsers including IE?
As per nextjs documentation they've mentioned that Next JS supports all the browsers but it doesn't tell explicitly...
Rishab Sharma
Votes: 0
Answers: 0
How to get width and height attributes on img element using Next/Image
The image is working just fine. Here is the code
<Image
layout="fixed"
src="/images/example.jpeg"
alt="Example image"
width="140"
height="140&...
jonask
Votes: 0
Answers: 2