关闭gzip

This commit is contained in:
fan 2020-04-01 14:39:29 +08:00
parent b1a80173b3
commit 848875bd57
2 changed files with 11 additions and 11 deletions

View File

@ -285,7 +285,7 @@ class SkinCode extends defaultStyle {
fontWeight: 'normal' fontWeight: 'normal'
}, },
stopTime: { // 停站时间 stopTime: { // 停站时间
offset: { x: -8, y: 3 }, // 运行时间偏移量 offset: { x: -40, y: 10 }, // 运行时间偏移量
textColor: '#FFFFFF', // 停站时间字体颜色 textColor: '#FFFFFF', // 停站时间字体颜色
textFontSize: 8 textFontSize: 8
}, },

View File

@ -86,16 +86,16 @@ module.exports = {
// // 为开发环境修改配置... // // 为开发环境修改配置...
// config.mode = 'development'; // config.mode = 'development';
// } // }
if (process.env.NODE_ENV !== 'development') { // if (process.env.NODE_ENV !== 'development') {
config.plugins.push(new CompressionPlugin({ // config.plugins.push(new CompressionPlugin({
filename: '[path].gz[query]', // filename: '[path].gz[query]',
algorithm: 'gzip', // algorithm: 'gzip',
test:/\.js$|\.html$|.\css/, // 匹配文件名 // test:/\.js$|\.html$|.\css/, // 匹配文件名
threshold: 10240, // 对超过10k的数据压缩 // threshold: 10240, // 对超过10k的数据压缩
minRatio: 0.8, // 只有压缩好这个比率的资产才能被处理 // minRatio: 0.8, // 只有压缩好这个比率的资产才能被处理
deleteOriginalAssets: true // deleteOriginalAssets: true
})); // }));
} // }
config.name = name; config.name = name;
config.resolve = { config.resolve = {
extensions: ['.js', '.vue', '.json'], extensions: ['.js', '.vue', '.json'],