Untitled
unknown
php
2 years ago
2.1 kB
6
Indexable
<?php /** * Enable local development services. */ $settings['container_yamls'][] = DRUPAL_ROOT . '/sites/development.services.yml'; /** * Disable CSS and JS aggregation. */ $config['system.performance']['css']['preprocess'] = FALSE; $config['system.performance']['js']['preprocess'] = FALSE; $config['advagg.settings']['enabled'] = FALSE; /** * Disable the render cache. * * Note: you should test with the render cache enabled, to ensure the correct * cacheability metadata is present. However, in the early stages of * development, you may want to disable it. * * This setting disables the render cache by using the Null cache back-end * defined by the development.services.yml file above. * * Only use this setting once the site has been installed. */ $settings['cache']['bins']['render'] = 'cache.backend.null'; /** * Disable Internal Page Cache. * * Note: you should test with Internal Page Cache enabled, to ensure the correct * cacheability metadata is present. However, in the early stages of * development, you may want to disable it. * * This setting disables the page cache by using the Null cache back-end * defined by the development.services.yml file above. * * Only use this setting once the site has been installed. */ $settings['cache']['bins']['page'] = 'cache.backend.null'; /** * Disable Dynamic Page Cache. * * Note: you should test with Dynamic Page Cache enabled, to ensure the correct * cacheability metadata is present (and hence the expected behavior). However, * in the early stages of development, you may want to disable it. */ $settings['cache']['bins']['dynamic_page_cache'] = 'cache.backend.null'; $settings['config_sync_directory'] = '../config/sync'; $config['config_split.config_split.config_dev']['status'] = FALSE; $config['config_split.config_split.live_configuration']['status'] = FALSE; $config['config_split.config_split.demo_configuration']['status'] = FALSE; $config['config_split.config_split.local_config']['status'] = TRUE; $config['stage_file_proxy.settings']['origin'] = 'https://deloitte:ZJ672P9nfynY@demo.fi-compass.eu/';
Editor is loading...