Change instructions to rather do:
new webpack.ProvidePlugin({ $: "jquery", jQuery: "jquery", "window.jQuery": "jquery" ,
to make it more clear. This exposes every module as a variable instead of exposing it all to the global namespace. This is for local jquery/bootstrap I guess, but I don't know if bootstrap requires it to all be global context.
Change instructions to rather do:
new webpack.ProvidePlugin({ $: "jquery", jQuery: "jquery", "window.jQuery": "jquery"
, to make it more clear. This exposes every module as a variable instead of exposing it all to the global namespace. This is for local jquery/bootstrap I guess, but I don't know if bootstrap requires it to all be global context.