You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's an issue with lottie-web when the LottieScroller component is pulled from node_module. The issue goes away when LottieScroller is put in lib/ instead of node_modules.
In AnimationMaker.js, this is the error I get when I import lottie-web like this: import * as bodymovin from 'lottie-web';
In AnimationMaker.js, this is the error I get when I import lottie-web like this: import bodymovin from 'lottie-web';
Added this to package.json and ran yarn. optimizeDeps: { include: ["lottie-web"], },
None of the steps solved the issue. In the meantime, if a project needs to use LottieScroller before you're back, I'll get them to put LottieScroller in lib/ instead.
The text was updated successfully, but these errors were encountered:
There's an issue with
lottie-web
when the LottieScroller component is pulled fromnode_module
. The issue goes away when LottieScroller is put inlib/
instead ofnode_modules
.There seems to be a known issue with lottie-web and svelte kit
I've tried a few things:
AnimationMaker.js
, this is the error I get when I import lottie-web like this:import * as bodymovin from 'lottie-web';
In
AnimationMaker.js
, this is the error I get when I import lottie-web like this:import bodymovin from 'lottie-web';
Added this to
package.json
and ran yarn.optimizeDeps: { include: ["lottie-web"], },
None of the steps solved the issue. In the meantime, if a project needs to use LottieScroller before you're back, I'll get them to put
LottieScroller
inlib/
instead.The text was updated successfully, but these errors were encountered: