Answers:
Drupal 8版本禁用聚合:
drush -y config-set system.performance css.preprocess 0
drush -y config-set system.performance js.preprocess 0
drush -y config-set advagg.settings enabled 0
在任何情况下drush cr
。
如果您的开发环境需要它,则可以settings.local.php
在settings.php
if (file_exists($app_root . '/' . $site_path . '/settings.local.php')) {
include $app_root . '/' . $site_path . '/settings.local.php';
}
并且确保只在您本地settings.local.php
(而不是您的生活环境中)使用以下设置
$config['system.performance']['css']['preprocess'] = FALSE;
$config['system.performance']['js']['preprocess'] = FALSE;
注意:可能会找到这些设置sites/default.settings.local.php
,您可以在其中复制sites/default/settings.local.php
和使用这些设置。
使用以下命令通过DRUSH取消设置CSS和JS聚合-Drupal-7:drush vset preprocess_js 0-是drush vset preprocess_css 0-是
Drupal-8:
请参考上面的评论。