Overrides

Name

disableChunkedEncoding

Disables sending a chunked response, and instead buffers all data in memory and sends it all at the same time. Also means that header Content-Length will be set.

Type: boolean

Default: false

Example

Switch from Transfer-Encoding: chunked and turn on Content-Length: bytelength

config.yml
disableChunkedEncoding: true

presets:
...

Last updated