so I just started coding and it’s been 1 month of using next.js and when I wanna use Images I can import or give the src directly to the src Prop in next Image tag so I wanna know which is better and which one to use?
<Iamge src={pic} alt="a random picture" />
<Iamge src={/public/pic} alt="a random picture" />
so both of this work I know but which one should I use?
New contributor
Emran Ghanbari is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.