Skip to content

Instantly share code, notes, and snippets.

@KELiON
Created June 14, 2017 16:08
Show Gist options
  • Save KELiON/e8216b256cbdc416f1625f45750e9021 to your computer and use it in GitHub Desktop.
Save KELiON/e8216b256cbdc416f1625f45750e9021 to your computer and use it in GitHub Desktop.
CompressionPlugin = require("compression-webpack-plugin");
...
plugins: [
...
new CompressionPlugin({
asset: "[path].gz[query]",
algorithm: "gzip",
test: /\.(js|css|html|svg)$/,
threshold: 10240,
minRatio: 0.8
})
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment