Transpile the modules.   If you have nuxt set to universal mode (SSR), then you'll need to register any plugins client side. import { gsap } from "gsap"; import { Draggable } from "gsap/Draggable"; if (process.client) { gsap.registerPlugin(Draggable); }    
    • Like
    2