I have an app i'm building in Electron. Electron exposes the require methods to the frontend.
CSSPlugin however will try to load TweenLite.js with a require command even if run on the frontend thread. And because it's part of a minified file this will fail with:
Uncaught Error: Cannot find module '../TweenLite.js'
I'm not even sure if this can be fixed, and it doesn't prevent functionality, it's just an eyesore in the console.
I have an app i'm building in Electron. Electron exposes the require methods to the frontend.
CSSPlugin however will try to load TweenLite.js with a require command even if run on the frontend thread. And because it's part of a minified file this will fail with:
Uncaught Error: Cannot find module '../TweenLite.js'
I'm not even sure if this can be fixed, and it doesn't prevent functionality, it's just an eyesore in the console.