作者 RuoYi

默认不启用压缩文件缓存防止node_modules过大

@@ -61,6 +61,7 @@ module.exports = { @@ -61,6 +61,7 @@ module.exports = {
61 plugins: [ 61 plugins: [
62 // http://doc.ruoyi.vip/ruoyi-vue/other/faq.html#使用gzip解压缩静态文件 62 // http://doc.ruoyi.vip/ruoyi-vue/other/faq.html#使用gzip解压缩静态文件
63 new CompressionPlugin({ 63 new CompressionPlugin({
  64 + cache: false, // 不启用文件缓存
64 test: /\.(js|css|html)?$/i, // 压缩文件格式 65 test: /\.(js|css|html)?$/i, // 压缩文件格式
65 filename: '[path].gz[query]', // 压缩后的文件名 66 filename: '[path].gz[query]', // 压缩后的文件名
66 algorithm: 'gzip', // 使用gzip压缩 67 algorithm: 'gzip', // 使用gzip压缩