답변:
통합을 비활성화하는 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 --yes drush vset preprocess_css 0 --yes
드루팔-8 :
위의 의견을 참조하십시오.