1 2 3 4 5 6 7
import Image from "next/image"; type NextImageProps = React.ComponentPropsWithoutRef<typeof Image>; export const NextImage = (props: NextImageProps) => ( <Image unoptimized={false} {...props} /> );
[PATCH repo_name]