-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Closed
Labels
bugIssue was opened via the bug report template.Issue was opened via the bug report template.
Milestone
Description
What version of Next.js are you using?
10.0.8
What version of Node.js are you using?
15.2.0
What browser are you using?
Chrom, Safari, Firefox
What operating system are you using?
macOS
How are you deploying your application?
next start
Describe the Bug
Many of the images show up duplicated after being compressed from next/image and also have a greenish hue to them, this fixes itself if unoptimized is set to true, can also be reproduced in 10.0.9-canary.4 but not in 10.0.7. Possibly related to #22253
Expected Behavior
Image just appearing once in the correct size and colours as they used to
To Reproduce
The code below is able to reproduce the issue
import Image from "next/image";
export default function Demo() {
return (
<Image src={"https://i.imgur.com/WCcL3Ip.png"} alt={""}
width={36} height={36}/>
)
}pacocoursey and OmgDef
Metadata
Metadata
Assignees
Labels
bugIssue was opened via the bug report template.Issue was opened via the bug report template.

