blob: 8c942e79c853db0b8565f23d809bff20bc6b46af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
config.plugins.push(new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery"
}));
config.module.rules.push({
test: require.resolve('jquery'),
use: [{
loader: 'expose-loader',
options: 'jQuery'
}]
})
|