From 61eb54e4a1877064f003d92265a8fa2e90eb7a75 Mon Sep 17 00:00:00 2001 From: RuoYi Date: Mon, 18 Mar 2024 14:11:26 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0compressionPlugin=E5=88=B06.1?= =?UTF-8?q?.2=E4=BB=A5=E5=85=BC=E5=AE=B9node18+?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ruoyi-ui/package.json | 2 +- ruoyi-ui/vue.config.js | 12 +++++++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/ruoyi-ui/package.json b/ruoyi-ui/package.json index 5b534d91..0af11e01 100644 --- a/ruoyi-ui/package.json +++ b/ruoyi-ui/package.json @@ -67,7 +67,7 @@ "babel-eslint": "10.1.0", "babel-plugin-dynamic-import-node": "2.3.3", "chalk": "4.1.0", - "compression-webpack-plugin": "5.0.2", + "compression-webpack-plugin": "6.1.2", "connect": "3.6.6", "eslint": "7.15.0", "eslint-plugin-vue": "7.2.0", diff --git a/ruoyi-ui/vue.config.js b/ruoyi-ui/vue.config.js index 486801b1..cb023caf 100644 --- a/ruoyi-ui/vue.config.js +++ b/ruoyi-ui/vue.config.js @@ -61,11 +61,13 @@ module.exports = { plugins: [ // http://doc.ruoyi.vip/ruoyi-vue/other/faq.html#使用gzip解压缩静态文件 new CompressionPlugin({ - cache: false, // 不启用文件缓存 - test: /\.(js|css|html)?$/i, // 压缩文件格式 - filename: '[path].gz[query]', // 压缩后的文件名 - algorithm: 'gzip', // 使用gzip压缩 - minRatio: 0.8 // 压缩率小于1才会压缩 + cache: false, // 不启用文件缓存 + test: /\.(js|css|html|jpe?g|png|gif|svg)?$/i, // 压缩文件格式 + filename: '[path][name][ext].gz', // 压缩后的文件名 + algorithm: 'gzip', // 使用gzip压缩 + // threshold: 10240, // 只有大于 10kb 的文件会被压缩 + minRatio: 0.8, // 压缩比例,小于 80% 的文件不会被压缩 + deleteOriginalAssets: false // 压缩后删除原文件 }) ], },