Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save felixhaeberle/4b8ff5cbb2f59361cdd71151fbd98675 to your computer and use it in GitHub Desktop.
Save felixhaeberle/4b8ff5cbb2f59361cdd71151fbd98675 to your computer and use it in GitHub Desktop.
Drupal 8 drush css js aggregation turn on off
# Drupal 8
# Turn off CSS aggregation
drush -y config-set system.performance css.preprocess 0
# Turn on CSS aggregation
drush -y config-set system.performance css.preprocess 1
# Turn off JS aggregation
drush -y config-set system.performance js.preprocess 0
# Turn on JS aggregation
drush -y config-set system.performance js.preprocess 1
# Turn off CSS and JS aggregation
drush -y config-set system.performance css.preprocess 0
drush -y config-set system.performance js.preprocess 0
# Turn on CSS and JS aggregation
drush -y config-set system.performance css.preprocess 1
drush -y config-set system.performance js.preprocess 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment