diff --git a/package.json b/package.json index 36d9fc711..6666d65cd 100644 --- a/package.json +++ b/package.json @@ -67,7 +67,6 @@ "@types/websocket": "0.0.33", "chai": "3.5.0", "chai-http": "3.0.0", - "compression-webpack-plugin": "0.4.0", "css-loader": "0.28.1", "event-stream": "3.3.4", "gulp": "3.9.1", @@ -88,7 +87,7 @@ "stylus-loader": "3.0.1", "swagger-jsdoc": "1.9.4", "tslint": "5.2.0", - "uglify-js": "git+https://github.com/mishoo/UglifyJS2.git#harmony", + "uglify-js": "git+https://github.com/mishoo/UglifyJS2.git#8f4b45f4f814c04918382949b4bcaf7a8d910281", "webpack": "2.5.1" }, "dependencies": { diff --git a/src/web/app/auth/view.pug b/src/web/app/auth/view.pug index 7fc4a2a70..afa1e408f 100644 --- a/src/web/app/auth/view.pug +++ b/src/web/app/auth/view.pug @@ -2,4 +2,4 @@ extends ../base block head meta(name='viewport' content='width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no') - script(src=`/assets/auth.${version}.ja.js.gz` async defer) + script(src=`/assets/auth.${version}.ja.js` async defer) diff --git a/src/web/app/client/script.js b/src/web/app/client/script.js index c069b0ee8..465d3edb3 100644 --- a/src/web/app/client/script.js +++ b/src/web/app/client/script.js @@ -16,7 +16,7 @@ const app = isMobile ? 'mobile' : 'desktop'; // Load app script const script = document.createElement('script'); -script.setAttribute('src', `/assets/${app}.${VERSION}.${lang}.js.gz`); +script.setAttribute('src', `/assets/${app}.${VERSION}.${lang}.js`); script.setAttribute('async', 'true'); script.setAttribute('defer', 'true'); head.appendChild(script); diff --git a/src/web/app/dev/view.pug b/src/web/app/dev/view.pug index 9bba6c11c..1a9a0e5bb 100644 --- a/src/web/app/dev/view.pug +++ b/src/web/app/dev/view.pug @@ -1,4 +1,4 @@ extends ../base block head - script(src=`/assets/dev.${version}.ja.js.gz` async defer) + script(src=`/assets/dev.${version}.js` async defer) diff --git a/webpack/plugins/compression.ts b/webpack/plugins/compression.ts deleted file mode 100644 index 89703680c..000000000 --- a/webpack/plugins/compression.ts +++ /dev/null @@ -1,9 +0,0 @@ -/** - * Compressor - */ - -const CompressionPlugin = require('compression-webpack-plugin'); - -export default () => new CompressionPlugin({ - deleteOriginalAssets: true -}); diff --git a/webpack/plugins/index.ts b/webpack/plugins/index.ts index 8771a9bc5..0692b9f8d 100644 --- a/webpack/plugins/index.ts +++ b/webpack/plugins/index.ts @@ -1,8 +1,6 @@ -import * as webpack from 'webpack'; const StringReplacePlugin = require('string-replace-webpack-plugin'); import constant from './const'; -import compression from './compression'; const env = process.env.NODE_ENV; const isProduction = env === 'production'; @@ -14,10 +12,8 @@ export default () => { ]; if (isProduction) { - plugins.push(new webpack.optimize.UglifyJsPlugin()); + //plugins.push(new webpack.optimize.UglifyJsPlugin()); } - plugins.push(compression()); - return plugins; };