Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save felixhaeberle/5de1ee6a184c3ca30f3a0ecf738fcd28 to your computer and use it in GitHub Desktop.
Save felixhaeberle/5de1ee6a184c3ca30f3a0ecf738fcd28 to your computer and use it in GitHub Desktop.
Drupal 7 drush css aggregation turn on off
# Drupal 7
# Turn on JS Aggregation
drush vset preprocess_js 1 --yes
# Turn off JS Aggregation
drush vset preprocess_js 0 --yes
# Turn on CSS Aggregation
drush vset preprocess_css 1 --yes
# Turn off CSS Aggregation
drush vset preprocess_css 0 --yes
# Turn on CSS + JS Aggregation
drush vset preprocess_css 1 --yes
drush vset preprocess_js 1 --yes
# Turn off CSS + JS Aggregation
drush vset preprocess_css 0 --yes
drush vset preprocess_js 0 --yes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment