Add compress to common

This commit is contained in:
Paulo Gustavo Veiga 2021-02-16 11:14:04 -08:00
parent c8a1352376
commit 7cdde4af4e
2 changed files with 18 additions and 3 deletions

View File

@ -63,7 +63,6 @@ module.exports = {
]
}
}]
}),
new CompressionPlugin()
})
]
}

View File

@ -6,5 +6,21 @@ module.exports = merge(common, {
mode: 'production',
devtool: 'source-map',
optimization: {
minimize: true }
minimize: true
},
plugins: [
new CleanWebpackPlugin(),
new CopyWebpackPlugin({
patterns: [{
from: 'public/*',
to: '[name].[ext]',
globOptions: {
ignore: [
'**/index.html'
]
}
}]
}),
new CompressionPlugin()
]
});