aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2018-03-11 10:14:48 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2018-03-11 10:14:48 +0900
commite1569105cb40e46d389f5940e7d569a4d39b226b (patch)
tree8e476ef40dfa18abf22470879c67cf9680ed5714 /webpack.config.js
parent594913917579ca456ca7c14801afdde09ca1e592 (diff)
disable minify
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