n_oct/webpack.config.js

18 lines
382 B
JavaScript
Raw Permalink Normal View History

2023-06-17 20:52:33 +00:00
const webpack = require('webpack');
module.exports = {
devtool: 'inline-source-map',
plugins: [
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
'window.jQuery': 'jquery',
'window.$': 'jquery',
}),
],
externals: {
// Use external version of jQuery
jquery: 'jQuery'
},
};