Hi all,
I did some animations with gsap and scrollscene and it working fine when I run the development environment but when I build the project and visit the page I get errors in the console.
Uncaught TypeError: Cannot assign to read only property 'x' of object '#<HTMLImageElement>'
I tried to add a polyfill like the scollscene docs say and I used next-transpile-modules and transpiled gsap like this but it didn't work.
const withTM = require('next-transpile-modules')(['gsap']);
Any suggestions?