diff options
author | Maurice Kühlborn <mk@minimalweb.de> | 2018-11-15 12:11:36 +0100 |
---|---|---|
committer | Maurice Kühlborn <mk@minimalweb.de> | 2018-11-21 23:21:01 +0100 |
commit | 455a122ef0135bd133b51014467211bc9a0a11f4 (patch) | |
tree | 93ce302bee7b2db56ed04802eb9112cc795eb236 /guides/source | |
parent | f6a16106fa124defcdf748514264098178173e83 (diff) | |
download | rails-455a122ef0135bd133b51014467211bc9a0a11f4.tar.gz rails-455a122ef0135bd133b51014467211bc9a0a11f4.tar.bz2 rails-455a122ef0135bd133b51014467211bc9a0a11f4.zip |
Add progressive JPG 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 706964090e..1ede31c1cd 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)`. |