Skip to content

Commit 0b43fa0

Browse files
committed
Allow webp as image format for ActiveStorage
It is only configured by default in unreleased Rails 7.2
1 parent 15e5499 commit 0b43fa0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lib/alchemy/engine.rb

+5
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,11 @@ class Engine < Rails::Engine
8181
end
8282
end
8383

84+
initializer "alchemy.active_storage" do |app|
85+
app.config.active_storage.web_image_content_types += %w[image/webp]
86+
app.config.active_storage.content_types_allowed_inline += %w[image/webp]
87+
end
88+
8489
config.after_initialize do
8590
if Alchemy.user_class
8691
ActiveSupport.on_load(:active_record) do

0 commit comments

Comments
 (0)