简体   繁体   中英

Nextjs Typescript Image placeholder

I am using Nextjs with typescript. I am trying to use the image component with the placeholder prop. But I keep on getting an error.

在此处输入图片说明

My code >

import bgSell from '../../public/assets/bgSell.jpg';

 <Image
    layout="fill"
    src={bgSell}
    className="z-0 absolute top-0 left-0 min-h-full min-w-full object-cover"
    placeholder="blur"
 />

I think I need to do some configuration in webpack maybe?

I checkout their git repo example and everything works fine but they are using javascript.

Here is the link of the example from next.js

https://github.com/vercel/next.js/blob/canary/examples/image-component/pages/placeholder.js

Any help would be awesome!

Yeap I found the issue. I was using nextjs version 10. I upgraded my version to 11 and everything works fine now :)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM