I\'m trying to require
the bootstrap-webpack module in my webpacked application.
It appears to need jQuery, since the bundled javascript then throws the fol
Via this github issue.
Install expose-loader
and add require('expose?$!expose?jQuery!jquery');
to your main entry point just before you require webpack-bootstrap.
This will set jQuery on the window so any file can get at it. Be careful with this method all files will then have access to that version of jQuery regardless of whether it was explicitly required.