~canonical-sysadmins/drupal/7.x

« back to all changes in this revision

Viewing changes to sites/default/default.settings.php

  • Committer: Barry Price
  • Date: 2019-02-22 08:30:41 UTC
  • Revision ID: barry.price@canonical.com-20190222083041-3bflvt8znc00u3xo
Drupal 7.64 upgrade

Show diffs side-by-side

added added

removed removed

Lines of Context:
645
645
 * @see drupal_clean_css_identifier()
646
646
 */
647
647
# $conf['allow_css_double_underscores'] = TRUE;
 
648
 
 
649
/**
 
650
 * The default list of directories that will be ignored by Drupal's file API.
 
651
 *
 
652
 * By default ignore node_modules and bower_components folders to avoid issues
 
653
 * with common frontend tools and recursive scanning of directories looking for
 
654
 * extensions.
 
655
 *
 
656
 * @see file_scan_directory()
 
657
 */
 
658
$conf['file_scan_ignore_directories'] = array(
 
659
  'node_modules',
 
660
  'bower_components',
 
661
);