Skip to content

Instantly share code, notes, and snippets.

@crittermike
Last active February 14, 2022 12:17
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save crittermike/6c3ddac1bff6e566144b174337ac11d7 to your computer and use it in GitHub Desktop.
Save crittermike/6c3ddac1bff6e566144b174337ac11d7 to your computer and use it in GitHub Desktop.
Disabling CSS/JS aggregation via Drush in Drupal 7 and Drupal 8

Drupal 7

drush vset preprocess_css 0 --yes
drush vset preprocess_js 0 --yes

Drupal 8

drush -y config-set system.performance css.preprocess 0
drush -y config-set system.performance js.preprocess 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment