Remove twgl

This commit is contained in:
schmelczerandras 2020-07-19 22:15:18 +02:00
parent 13942af41c
commit ac66c91000
16 changed files with 364 additions and 154 deletions

View file

@ -19,10 +19,27 @@ module.exports = {
disableHostCheck: true,
},
optimization: {
minimize: true,
minimizer: [
/*new TerserJSPlugin({
new TerserJSPlugin({
sourceMap: !isProduction,
}),*/
cache: true,
terserOptions: {
ecma: 5,
warnings: false,
parse: {},
compress: {},
mangle: true,
module: false,
output: null,
toplevel: false,
nameCache: null,
ie8: false,
keep_classnames: true,
keep_fnames: true,
safari10: false,
},
}),
new OptimizeCSSAssetsPlugin({}),
],
},