ProvidePlugin not working with jquery - webpack
问题 I am trying to access jquery in my application according to information on webpack website you are able to create global variable using webpack https://webpack.js.org/plugins/provide-plugin/ here is my webpack set up module.exports = { entry: { index: "./scripts/index.js", vendorJS: ["jquery", "jquery-validation", "jquery-validation-unobtrusive"] } , output: { path: path.join(__dirname, '/wwwroot/'), filename: '[name].js' }, resolve: { extensions: ['.js', '.jsx', '.css', '.scss', '.sass'] },