remove exports loader
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2021-02-23 04:31:13 +01:00
parent 41e700a4c1
commit 643b27107f
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D
2 changed files with 0 additions and 7 deletions

View File

@ -15,7 +15,6 @@
"core-js": "3.8.1",
"css-loader": "5.0.1",
"css-minimizer-webpack-plugin": "1.2.0",
"exports-loader": "2.0.0",
"fast-glob": "3.2.4",
"file-loader": "6.2.0",
"font-awesome": "4.7.0",

View File

@ -5,7 +5,6 @@ const TerserPlugin = require('terser-webpack-plugin');
const {statSync} = require('fs');
const {resolve, parse} = require('path');
const {SourceMapDevToolPlugin} = require('webpack');
const webpack = require('webpack');
const glob = (pattern) => fastGlob.sync(pattern, {cwd: __dirname, absolute: true});
@ -195,11 +194,6 @@ module.exports = {
'css/index.css',
],
}),
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
Util: 'exports-loader?Util!bootstrap/js/dist/util'
}),
],
performance: {
hints: false,