- 🇨🇦Canada star-szr
In other words the patch in this issue would effectively be a subset of the latest larger combined patch??
That is my understanding at least.
Developers routinely enable settings for Twig development by editing development.services.yml. However this is not convenient as it gets overwritten from core scaffold files with each Drupal composer update. We should provide a better way to do it.
There are 3 relevant Twig settings.
development.services.yml because it's always useful in development.twig-debug.services.yml specifically for the Twig debug setting./**
* Enable Twig debugging services.
*
* Enabling Twig debugging is not recommended in production environments and
* can break parts of Drupal. See https://drupal.org/i/2914733 for details.
*/
$settings['container_yamls'][] = DRUPAL_ROOT . '/sites/twig-debug.services.yml';
For the website themer, this code is more or less analogous to adding $config['theme_debug'] = TRUE; option in Drupal 7 settings.php file → . Optionally, a CR could be added to describe this difference between D7 / D8.
Needs work
10.1 ✨
Last updated
Enhances developer experience.
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
In other words the patch in this issue would effectively be a subset of the latest larger combined patch??
That is my understanding at least.