diff --git a/src/Robo/Plugin/Commands/DevelopmentModeBaseCommands.php b/src/Robo/Plugin/Commands/DevelopmentModeBaseCommands.php index 37f34d8..1985342 100644 --- a/src/Robo/Plugin/Commands/DevelopmentModeBaseCommands.php +++ b/src/Robo/Plugin/Commands/DevelopmentModeBaseCommands.php @@ -347,11 +347,12 @@ protected function frontendDevEnableDrupal(string $siteDir = 'default', array $o ); } - $this->say("enablig twig.debug in development.services.yml."); + $this->say("optimizing twig for front-end development in development services yml config."); $devServices = Yaml::parseFile($this->devServicesPath); $devServices['parameters']['twig.config'] = [ 'debug' => true, 'auto_reload' => true, + 'cache' => false, ]; file_put_contents($this->devServicesPath, Yaml::dump($devServices)); $this->say("disabling render and dynamic_page_cache in settings.local.php.");