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

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGretaD <gretadoci@gmail.com>2021-01-15 16:33:10 +0300
committerGretaD <gretadoci@gmail.com>2021-01-15 18:03:36 +0300
commit86dc755a5abe4c8075f0917eed8a3c2eb659bda5 (patch)
tree004431101f9b4db7c2f73eb3065e8f530d40f266 /webpack.common.js
parentd433ed02eabf05c4f055f967ded9244a902070e7 (diff)
Remove unused webpack dependency
Signed-off-by: GretaD <gretadoci@gmail.com>
Diffstat (limited to 'webpack.common.js')
-rw-r--r--webpack.common.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/webpack.common.js b/webpack.common.js
index 0814297d2..196dc7a87 100644
--- a/webpack.common.js
+++ b/webpack.common.js
@@ -1,5 +1,4 @@
const path = require('path');
-const BundleAnalyzerPlugin = require('@bundle-analyzer/webpack-plugin')
const CKEditorWebpackPlugin = require('@ckeditor/ckeditor5-dev-webpack-plugin');
const {styles} = require('@ckeditor/ckeditor5-dev-utils');
const { VueLoaderPlugin } = require('vue-loader');
@@ -13,10 +12,6 @@ const plugins = [
new VueLoaderPlugin()
]
-if (process.env.BUNDLE_ANALYZER_TOKEN) {
- plugins.push(new BundleAnalyzerPlugin({ token: process.env.BUNDLE_ANALYZER_TOKEN }))
-}
-
module.exports = {
entry: {
autoredirect: path.join(__dirname, 'src/autoredirect.js'),