Last active
June 28, 2017 15:17
-
-
Save crittermike/4a6476e6fe402e015989c62a08e0a905 to your computer and use it in GitHub Desktop.
Disable caching for local Drupal 8 development
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
<?php | |
$settings['container_yamls'][] = DRUPAL_ROOT . '/sites/development.services.yml'; | |
$settings['cache']['bins']['render'] = 'cache.backend.null'; | |
$settings['cache']['bins']['dynamic_page_cache'] = 'cache.backend.null'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment