以下のようにpreprocessed: true
を記述することでバリアントを事前に生成できます。
app/models/user.rb
class User < ApplicationRecord
has_one_attached :avatar do |attachable|
attachable.variant :thumb, resize_to_limit: [100, 100], preprocessed: true
end
end
Go to list of users who liked
以下のようにpreprocessed: true
を記述することでバリアントを事前に生成できます。
class User < ApplicationRecord
has_one_attached :avatar do |attachable|
attachable.variant :thumb, resize_to_limit: [100, 100], preprocessed: true
end
end
Register as a new user and use Qiita more conveniently
Go to list of users who liked