Created
May 18, 2018 14:09
-
-
Save felixhaeberle/4b8ff5cbb2f59361cdd71151fbd98675 to your computer and use it in GitHub Desktop.
Drupal 8 drush css js aggregation turn on off
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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