Skip to content
Snippets Groups Projects
Commit 9399c98a authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2321605 by astrocling: Fixed Standardize Commenting in example.settings.local.php.

parent 64c6bf89
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -11,18 +11,26 @@
* mention 'settings.local.php'.
*/
// Enable local development services.
/**
* Enable local development services.
*/
$settings['container_yamls'][] = DRUPAL_ROOT . '/sites/development.services.yml';
// Show all error messages, with backtrace information.
/**
* Show all error messages, with backtrace information.
*/
$config['system.logging']['error_level'] = 'verbose';
// Disable CSS and JS aggregation.
/**
* Disable CSS and JS aggregation.
*/
$config['system.performance']['css']['preprocess'] = FALSE;
$config['system.performance']['js']['preprocess'] = FALSE;
// Disable the render cache, by using the Null cache back-end defined by the
// development.services.yml file above.
/**
* Disable the render cache, by using the Null cache back-end defined by the
* development.services.yml file above.
* /
$settings['cache']['bins']['render'] = 'cache.backend.null';
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment