From 0a1b04dfe393b2dd4ddbbc666f6a8e0440c43739 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Sun, 28 Jul 2019 22:54:46 -0400 Subject: [PATCH] Disable CSS & JS aggregation in development environment NOTE: Remember to comment out these lines when debugging CSS/JS behavior that's seemingly different on live versus local! --- web/sites/default/settings.ddev.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/sites/default/settings.ddev.php b/web/sites/default/settings.ddev.php index 7dd871b..29c495b 100644 --- a/web/sites/default/settings.ddev.php +++ b/web/sites/default/settings.ddev.php @@ -68,3 +68,6 @@ if (empty($config_directories[CONFIG_SYNC_DIRECTORY])) { if (file_exists($app_root . '/' . $site_path . '/services.yml')) { $settings['container_yamls'][] = $app_root . '/' . $site_path . '/services.yml'; } + +$config['system.performance']['css']['preprocess'] = FALSE; +$config['system.performance']['js']['preprocess'] = FALSE;