8 lines
149 B
8 lines
149 B
3 years ago
|
const webpack = require('webpack')
|
||
|
|
||
|
module.exports = new webpack.ProvidePlugin({
|
||
|
"$":"jquery",
|
||
|
"jQuery":"jquery",
|
||
|
"window.jQuery":"jquery"
|
||
|
});
|