We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afe134b commit 2e4890fCopy full SHA for 2e4890f
webpack.config.js
@@ -99,7 +99,7 @@ module.exports = (env) => {
99
new CopyPlugin({
100
patterns: [
101
{from: 'icons', to: 'icons', context: '.'},
102
- {from: 'data', to: 'data', context: '.', globOptions: { ignore: ['bluegem.json'] }},
+ {from: 'data', to: 'data', context: '.', globOptions: { ignore: ['bluegem.json'] } },
103
{from: 'src/global.css', to: 'src/', context: '.'},
104
{from: 'src/background_ff.html', to: 'src/', context: '.'},
105
{from: 'src/steamcommunity_ruleset.json', to: 'src/', context: '.'},
@@ -151,9 +151,7 @@ module.exports = (env) => {
151
filename: "[path][base].gz", // Change extension to .gz
152
algorithm: "gzip", // Use gzip algorithm
153
test: /bluegem\.json$/,
154
- threshold: 0, // Compress all files regardless of size
155
- minRatio: Infinity, // Compress regardless of the compression ratio achieved
156
- deleteOriginalAssets: false,
+ deleteOriginalAssets: true,
157
}),
158
],
159
stats: {
0 commit comments