关闭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'
},
stopTime: { // 停站时间
offset: { x: -8, y: 3 }, // 运行时间偏移量
offset: { x: -40, y: 10 }, // 运行时间偏移量
textColor: '#FFFFFF', // 停站时间字体颜色
textFontSize: 8
},

View File

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