Is it possible to auto-generate an image transform for a field inside of the new Content Block field type introduced in Craft 5.8?
return [
'fields' => [
'contentBlockField.image' => [
'transformName',
],
],
'elements' => [
[
'elementType' => \craft\elements\Entry::class,
'criteria' => [
'section' => ['blog'],
],
'fields' => ['contentBlockField.image'],
'transforms' => [
'transformName',
]
]
]
];