This commit is contained in:
bijan
2022-05-12 17:56:05 +04:30
commit a6721fed75
113 changed files with 10354 additions and 0 deletions

7
config/webpack/plugins/jquery.js vendored Normal file
View File

@ -0,0 +1,7 @@
const webpack = require('webpack')
module.exports = new webpack.ProvidePlugin({
"$":"jquery",
"jQuery":"jquery",
"window.jQuery":"jquery"
});