NM
Size: a a a
NM
VS
NM
<drupal-media data-caption=" " data-entity-type="media" data-entity-uuid="dbb16f97-cd11-4357-acde-cd09e19e312b"></drupal-media>
NM
VS
AP
/**
* Implements hook_preprocess_HOOK() for 'image.html.twig'.
*/
function MYMODULE_preprocess_image(array &$variables) {
$variables['attributes']['loading'] = 'lazy';
$variables['attributes']['decoding'] = 'async';
}
NM
/**
* Implements hook_preprocess_HOOK() for 'responsive-image.html.twig'.
*/
function MYMODULE_preprocess_responsive_image(array &$variables) {
$variables['img_element']['#attributes']['loading'] = 'lazy';
$variables['img_element']['#attributes']['decoding'] = 'async';
}
NM
VS
C
<img
NM
NM
NM
NM
AP
VS
NM
NM
AP
AP