这是我的 Nextjs Image 组件的代码:
... Cell: ({ value }: CellType) => (
<Image
priority
src={value}
loader={() => value}
className={''}
height={100}
width={100}
alt={'profile_picture'}
/>
),
Run Code Online (Sandbox Code Playgroud)
这是否意味着我需要一个自定义加载程序函数来消除警告?谢谢!