回答:
集計を無効にする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-Drupal-7を通じてCSSおよびJS集約を設定解除します。drushvset preprocess_js 0 --yes drush vset preprocess_css 0 --yes
Drupal-8:
上記のコメントを参照してください。