码迷,mamicode.com
首页 > 其他好文 > 详细

Vue gzip压缩

时间:2020-02-26 20:55:15      阅读:52      评论:0      收藏:0      [点我收藏+]

标签:path   ati   ==   regexp   test   com   res   config   匹配   

gzip 压缩

const CompressionWebpackPlugin = require('compression-webpack-plugin');
// configureWebpack.plugins

new CompressionWebpackPlugin({
    filename: '[path].gz[query]',
    algorithm: 'gzip',
    test: new RegExp('\\.(' + ['js', 'css'].join('|') + ')$'), // 匹配文件名
    threshold: 102, // 对0.1K以上的数据进行压缩
    minRatio: 0.8,
    deleteOriginalAssets: false /* process.env.NODE_ENV == 'production' // 是否删除源文件 */
});

Vue gzip压缩

标签:path   ati   ==   regexp   test   com   res   config   匹配   

原文地址:https://www.cnblogs.com/tujw/p/12368786.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!