aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/webpack.config.js b/webpack.config.js
index fc5ef5e..e384d5a 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -1,4 +1,3 @@
-const MinifyPlugin = require("babel-minify-webpack-plugin");
const HtmlWebpackPlugin = require('html-webpack-plugin');
const path = require('path');
@@ -57,8 +56,5 @@ config = {
})
]
};
-if (process.env.NODE_ENV === 'production') {
- config.plugins.push(new MinifyPlugin());
-}
module.exports = config