diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2018-11-23 16:53:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-23 16:53:30 -0500 |
commit | 437d20916f80eb905a1c028db4bd53304c293e61 (patch) | |
tree | ce37e829be7cadd4e2c9795fca584e0c03981f32 /guides/source | |
parent | 246ee77eef7b799a647beb2ff704a9a5867bec66 (diff) | |
parent | 455a122ef0135bd133b51014467211bc9a0a11f4 (diff) | |
download | rails-437d20916f80eb905a1c028db4bd53304c293e61.tar.gz rails-437d20916f80eb905a1c028db4bd53304c293e61.tar.bz2 rails-437d20916f80eb905a1c028db4bd53304c293e61.zip |
Merge pull request #34455 from minimalweb/progressive_jpeg_inclusion_as_variable_content_type
Add progressive JPG MIME-type to default variable content types
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/configuring.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index de6766e12e..960a43406b 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -813,7 +813,7 @@ normal Rails server. config.active_storage.paths[:ffprobe] = '/usr/local/bin/ffprobe' ``` -* `config.active_storage.variable_content_types` accepts an array of strings indicating the content types that Active Storage can transform through ImageMagick. The default is `%w(image/png image/gif image/jpg image/jpeg image/vnd.adobe.photoshop image/vnd.microsoft.icon)`. +* `config.active_storage.variable_content_types` accepts an array of strings indicating the content types that Active Storage can transform through ImageMagick. The default is `%w(image/png image/gif image/jpg image/jpeg image/pjpeg image/vnd.adobe.photoshop image/vnd.microsoft.icon)`. * `config.active_storage.content_types_to_serve_as_binary` accepts an array of strings indicating the content types that Active Storage will always serve as an attachment, rather than inline. The default is `%w(text/html text/javascript image/svg+xml application/postscript application/x-shockwave-flash text/xml application/xml application/xhtml+xml)`. |