When I use the Live Server to run my application the Images look fine in my local server, but after deploying the same react/next application to vercel, the images aren t getting rendered properly which are present in the public folder.
<div className="content">
<div className="cards">
{jsonData.map((info) => {
return (
<div className="card" key={info.id}>
<div className="card-head">
<img src="./06.png" />
<div className="icon-body">
<FiGithub className="git-icon" />
</div>
</div>
<h3>{info.name}</h3>
<div className="desc">{info.description}</div>
<div className="stack">{info.stack}</div>
</div>
);
})}
</div>
</div>
https://i.stack.imgur.com/sQInf.png”rel=“nofollow noreferer”> 预期产出(当地服务器)
https://i.stack.imgur.com/2Qqc5.png”rel=“nofollow noreferer”>Vercel Deployed Output