I use react-boilerplate, which in turn uses Webpack DllPlugin. It works great. I also use Webpack ProvidePlugin to expose jquery to automatically make jquery available in modules, so that jquery plugins can add their methods to jquery prototype as usual. It also works great. However when I put jquery into a dll file with DllPlugin, jquery becomes unavailable. I get an error
carousel.js:237 Uncaught ReferenceError: jQuery is not defined
Is there a solution for this problem in Webpack?