I don't think nuxt supports es-modules. I think nuxt is importing the umd file when you do this.   import { gsap } from "gsap"; // It's probably importing this. import { gsap } from "gsap/dist/gsap";   So try importing umd files like this.   import { gsap } from "gsap/dist/gsap"; import { PixiPlugin } from "gsap/dist/PixiPlugin.js"; gsap.registerPlugin(PixiPlugin);   And if PixiJS is not global, you'll need to register it. https://greensock.com/docs/v3/Plu
    • Thanks
    • Like
    5