Skip to content

Instantly share code, notes, and snippets.

@Weiyuan-Lane
Created August 10, 2019 09:08
Show Gist options
  • Save Weiyuan-Lane/dbd06d1b0b587bf8a15bbdae21521dbb to your computer and use it in GitHub Desktop.
Save Weiyuan-Lane/dbd06d1b0b587bf8a15bbdae21521dbb to your computer and use it in GitHub Desktop.
Using compression-webpack-plugin with Next.js + webpack
const CompressionPlugin = require('compression-webpack-plugin');
module.exports = {
webpack: function(config) {
config.plugins.push(new CompressionPlugin());
return config;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment