so i have a few vendor files that i need to run from window scoped (it\'s a bunch of window scoped functions) plus i have some polyfills that i would like to bundle into the
script-loader should-not be used anymore. You can use raw-loader instead:
npm install --save-dev raw-loader
And:
import('!!raw-loader!./nonModuleScript.js').then(rawModule => eval.call(null, rawModule.default));
I'm using !!
before raw-loader
because I'm in the case described in the documentation:
Adding
!!
to a request will disable all loaders specified in the configuration