diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-11-28 18:14:24 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-11-28 18:14:24 +0900 |
| commit | 6bac17917ec9c3b387738ba8f97145c88a270957 (patch) | |
| tree | e13718fe8dac6345ed0501372377288d908037ba /webpack/plugins/index.ts | |
| parent | Merge pull request #951 from syuilo/greenkeeper/@types/chai-4.0.6 (diff) | |
| download | misskey-6bac17917ec9c3b387738ba8f97145c88a270957.tar.gz misskey-6bac17917ec9c3b387738ba8f97145c88a270957.tar.bz2 misskey-6bac17917ec9c3b387738ba8f97145c88a270957.zip | |
MAKE COMPRESSION GREAT AGAIN
Diffstat (limited to 'webpack/plugins/index.ts')
| -rw-r--r-- | webpack/plugins/index.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webpack/plugins/index.ts b/webpack/plugins/index.ts index 3d1416d1ea..9850db485c 100644 --- a/webpack/plugins/index.ts +++ b/webpack/plugins/index.ts @@ -2,7 +2,7 @@ const StringReplacePlugin = require('string-replace-webpack-plugin'); import consts from './consts'; import hoist from './hoist'; -//import minify from './minify'; +import minify from './minify'; import banner from './banner'; const env = process.env.NODE_ENV; @@ -16,7 +16,7 @@ export default (version, lang) => { ]; if (isProduction) { - //plugins.push(minify()); + plugins.push(minify()); } plugins.push(banner(version)); |