17 lines
348 B
JavaScript
17 lines
348 B
JavaScript
|
|
const webpack = require('webpack');
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
plugins: [
|
||
|
|
new webpack.ProvidePlugin({
|
||
|
|
$: 'jquery',
|
||
|
|
jQuery: 'jquery',
|
||
|
|
'window.jQuery': 'jquery',
|
||
|
|
'window.$': 'jquery',
|
||
|
|
}),
|
||
|
|
],
|
||
|
|
externals: {
|
||
|
|
// Use external version of jQuery
|
||
|
|
jquery: 'jQuery'
|
||
|
|
},
|
||
|
|
};
|