Open
Description
I noticed next/image's size is set differently depending on where you host your Next.js project.
I uploaded a 1 page Next.js project displaying an image on Netlify and Vercel.
On Vercel, the image's intrinsic size is 1920x1674 - https://newapp-eight-tawny.vercel.app/
On Netlify the image, is intrinsic size is 3840x3348 - https://inquisitive-sunshine-89a4b0.netlify.app/
These values can be seen in the bottom right corner of each image below.

"The Rendered size is the portion of the page that the image takes up. The Intrinsic size is the original size of the image."
Here is the code for both pages
import Image from "next/image";
import animal from "../public/images/animal.jpg";
export default function Home() {
return (
<div>
<Image className="w-full h-auto" src={animal} alt=""></Image>
</div>
);
}