Hi there,
try adding this PHP Snippet to your site:
function db_add_image_attr( $block_content, $block ) {
if (
! empty( $block['attrs']['className'] )
&& 'atf' === $block['attrs']['className']
) {
$block_content = str_replace( '>', 'fetchpriority="high">', $block_content );
}
return $block_content;
}
add_filter( 'render_block', 'db_add_image_attr', 10, 2 );
Then select the Image Block, and give it a class of atf and that should add the attribute for you.