dchadwick/web/modules/custom/content_block_preview/content_block_preview.module

12 lines
250 B
PHP
Raw Permalink Normal View History

2025-03-15 17:25:17 -04:00
<?php
/**
* Implements hook form alter.
*/
function content_block_preview_element_info_alter(array &$types) {
if (isset($types['layout_builder'])) {
$types['layout_builder']['#attached']['library'][] = 'content_block_preview/assets';
}
}