amio / re-carousel

Minimal carousel component for React.
https://amio.github.io/re-carousel/
273 stars 50 forks source link

It doesn't work in Next.js #149

Closed acatzk closed 3 years ago

adrielgro commented 2 years ago

Disable strict mode in next.config.js and in your global css add. That should look something like this

next.config.js

module.exports = { reactStrictMode: false, }

global.css

html, body, #__next { height: 100%; }