Now you don't need to run drush cr every time.
Last active
September 28, 2022 00:11
-
-
Save juancarielo/5f42cebc1dc72d0e8c3f602c0c57663f to your computer and use it in GitHub Desktop.
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
| parameters: | |
| http.response.debug_cacheability_headers: true | |
| twig.config: | |
| debug: true | |
| auto_reload: true | |
| cache: false | |
| services: | |
| cache.backend.null: | |
| class: Drupal\Core\Cache\NullBackendFactory |
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'][] = __DIR__ . '/services.dev.yml'; | |
| $config['system.performance']['css']['preprocess'] = FALSE; | |
| $config['system.performance']['js']['preprocess'] = FALSE; | |
| $settings['cache']['bins']['page'] = 'cache.backend.null'; | |
| $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