Guest User

Untitled

a guest
Apr 19th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. /**
  2. * Implements hook_page_attachments_alter().
  3. */
  4. function mytheme_page_attachments_alter(&$attachments) {
  5. if (Drupal::service('path.matcher')->isFrontPage()) {
  6. $attachments['#attached']['library'][] = 'mytheme/library-name';
  7. }
  8. }
Add Comment
Please, Sign In to add comment