Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2021-06-16 23:47:58 +0300
committerdartcafe <github@dartcafe.de>2021-06-16 23:47:58 +0300
commit37e4a5b7e2ed9b5727d8ab6a1d836761eada32e5 (patch)
tree16b40d7f9b94506cad919522694dc4528b8b9429 /webpack.prod.js
parent0c92786b6f4000756f3d4810c4310c893c9f7a26 (diff)
pack webpack config and remove terser options
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'webpack.prod.js')
-rw-r--r--webpack.prod.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/webpack.prod.js b/webpack.prod.js
deleted file mode 100644
index a197efea..00000000
--- a/webpack.prod.js
+++ /dev/null
@@ -1,17 +0,0 @@
-const { merge } = require('webpack-merge')
-const common = require('./webpack.common.js')
-const TerserPlugin = require('terser-webpack-plugin')
-
-module.exports = merge(common, {
- mode: 'production',
- optimization: {
- minimizer: [
- new TerserPlugin({
- parallel: true,
- terserOptions: {
- ecma: 6,
- },
- }),
- ],
- },
-})