mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 15:33:08 +02:00
9 lines
166 B
TypeScript
9 lines
166 B
TypeScript
/**
|
|
* Compressor
|
|
*/
|
|
|
|
const CompressionPlugin = require('compression-webpack-plugin');
|
|
|
|
export default () => new CompressionPlugin({
|
|
deleteOriginalAssets: true
|
|
});
|