parent
4c2a3d8df0
commit
2d485730f0
|
@ -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": {
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
/**
|
||||
* Compressor
|
||||
*/
|
||||
|
||||
const CompressionPlugin = require('compression-webpack-plugin');
|
||||
|
||||
export default () => new CompressionPlugin({
|
||||
deleteOriginalAssets: true
|
||||
});
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue