Next.js Discord

Discord Forum

Local Images not Stored in Public Folder?

Answered
Cuvier’s Dwarf Caiman posted this in #help-forum
Open in Discord
Cuvier’s Dwarf CaimanOP
How do you import an image stored on your computer that is not in the public folder. I get:
Error: Invalid src prop (C:\Users\...) onnext/image, hostname "" is not configured under images in yournext.config.jsSee more info: https://nextjs.org/docs/messages/next-image-unconfigured-host
Answered by joulev
instead of
;<Image src="C:\\Users\\..." />

use
import image from "../image.png";

<Image src={image} />
View full answer

2 Replies