Skip to content
Snippets Groups Projects
Unverified Commit 212176ee authored by syuilo's avatar syuilo
Browse files

Use terser instead of uglifyjs

parent a63ec05e
No related branches found
No related tags found
No related merge requests found
......@@ -198,6 +198,7 @@
"summaly": "2.2.0",
"systeminformation": "3.47.0",
"syuilo-password-strength": "0.0.1",
"terser-webpack-plugin": "1.1.0",
"textarea-caret": "3.1.0",
"tinycolor2": "1.4.1",
"tmp": "0.0.33",
......
......@@ -9,6 +9,7 @@ const { VueLoaderPlugin } = require('vue-loader');
const WebpackOnBuildPlugin = require('on-build-webpack');
//const HardSourceWebpackPlugin = require('hard-source-webpack-plugin');
const ProgressBarPlugin = require('progress-bar-webpack-plugin');
const TerserPlugin = require('terser-webpack-plugin');
const constants = require('./src/const.json');
......@@ -146,6 +147,9 @@ module.exports = {
resolveLoader: {
modules: ['node_modules']
},
optimization: {
minimizer: [new TerserPlugin()]
},
cache: true,
devtool: false, //'source-map',
mode: isProduction ? 'production' : 'development'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment