npm install jquery --save
npm install webpack --save-dev
const webpack = require("webpack");
module.exports = {
...
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery"
})
]
}
$(document).ready(function() {...});