Next.js:Png 文件无法在 vercel 中渲染

问题描述 投票:0回答:1

我正在使用 Next.js 和 Sass 开发一个项目,但是当我在 vercel 中部署我的项目时,png 图像没有渲染,svg 文件工作没有问题。

在本地主机中,png图像正在渲染,只是在vercel中没有。

图像已公开(第18行)

reactjs image next.js png vercel
1个回答
0
投票

您不应在

{}
标签的
src
属性中添加大括号
<Image>

尝试删除它:

<Image width={300} height={300} alt="employer" src="/perfil.png" />
© www.soinside.com 2019 - 2024. All rights reserved.