Why Carusel does not accept Next.js Image?
See original GitHub issueWe use react-responsive-carousel
in our Next.js
project. When we replaced img
with Image
to optimize thumbnail image size, thumbnails disappeared. Do you know why?
Issue Analytics
- State:
- Created 3 years ago
- Comments:9 (1 by maintainers)
Top Results From Across the Web
3 Ways to Implement a Carousel in Nextjs - Media Jams
Elastic Carousel is a flexible and responsive carousel component; it somehow does not support automatic cycling through content but has full ...
Read more >Basic Features: Image Optimization - Next.js
To use a remote image, the src property should be a URL string, which can be relative or absolute. Because Next.js does not...
Read more >How to add Image Carousel in NextJS ? - GeeksforGeeks
In this article, we are going to learn how we can add an Image Carousel in NextJS. NextJS is a React-based framework. It...
Read more >4 Best Next.js Image Carousels: The Ultimate List - TurboFuture
It has a variety of features, including: Support for mobile gestures; Keyboard shortcuts; Image captions. However it doesn't currently have ...
Read more >Carousel - React.js Examples
A simple image carousel built with React JS without any other dependencies. 22 June 2021 ... Feature-rich, react-way carousel component that does not...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
I have fixed the issue using the renderThumbs property. I am using a combination of tailwindCSS and Next.js. My solution is as follows.
My product.images is just an array containing links in the following format.
["examplelink.com", "examplelink.com"]
This worked perfectly fine for me.