rsnext/docs/api-reference/next.config.js/compression.md
Luis Alvarez D 7fc850e28a [docs] Added related links to next.config.js (#10174)
* Added related links

* Added missing dots
2020-01-20 21:40:20 +01:00

944 B

description
Next.js provides gzip compression to compress rendered content and static files, it only works with the server target. Learn more about it here.

Compression

Next.js provides gzip compression to compress rendered content and static files. Compression only works with the server target. In general you will want to enable compression on a HTTP proxy like nginx, to offload load from the Node.js process.

To disable compression, open next.config.js and disable the compress config:

module.exports = {
  compress: false,
}