mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
9 lines
166 B
TypeScript
9 lines
166 B
TypeScript
/**
|
|
* Compressor
|
|
*/
|
|
|
|
const CompressionPlugin = require('compression-webpack-plugin');
|
|
|
|
export default () => new CompressionPlugin({
|
|
deleteOriginalAssets: true
|
|
});
|