作者 RuoYi

新增使用Gzip解压缩静态文件地址

@@ -59,11 +59,11 @@ module.exports = { @@ -59,11 +59,11 @@ module.exports = {
59 } 59 }
60 }, 60 },
61 plugins: [ 61 plugins: [
  62 + // http://doc.ruoyi.vip/ruoyi-vue/other/faq.html#使用gzip解压缩静态文件
62 new CompressionPlugin({ 63 new CompressionPlugin({
63 test: /\.(js|css|html)?$/i, // 压缩文件格式 64 test: /\.(js|css|html)?$/i, // 压缩文件格式
64 filename: '[path].gz[query]', // 压缩后的文件名 65 filename: '[path].gz[query]', // 压缩后的文件名
65 algorithm: 'gzip', // 使用gzip压缩 66 algorithm: 'gzip', // 使用gzip压缩
66 - threshold: 10240, // 对超过10K的数据压缩  
67 minRatio: 0.8 // 压缩率小于1才会压缩 67 minRatio: 0.8 // 压缩率小于1才会压缩
68 }) 68 })
69 ], 69 ],