So I'm yet to solve this issue.  This is not throwing me any errors, but it's not working:   import TweenMax from 'gsap' import Draggable from 'gsap/Draggable' import ThrowPropsPlugin from '../assets/js/ThrowPropsPlugin   But moving my ThrowPropsPlugin.js from my assets/js folder to the gsap npm folder and importing it like this works:   import TweenMax from 'gsap' import Draggable from 'gsap/Draggable' import ThrowPropsPlugin from 'gsap/ThrowPropsPlugin   Howev