From da32051f3a378d8d34f67d1b49b868534885e2e1 Mon Sep 17 00:00:00 2001 From: Maarten Bruna <14947039+ictbeheer@users.noreply.github.com> Date: Tue, 17 Jun 2025 11:20:27 +0200 Subject: [PATCH] (fix): check if child theme has a config dir --- src/Bootstrap/LoadConfiguration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bootstrap/LoadConfiguration.php b/src/Bootstrap/LoadConfiguration.php index 4c82395..93ef578 100644 --- a/src/Bootstrap/LoadConfiguration.php +++ b/src/Bootstrap/LoadConfiguration.php @@ -15,7 +15,7 @@ public function bootstrap(ApplicationContract $app) { parent::bootstrap($app); - if (! is_child_theme()) { + if (! is_child_theme() || ! is_dir(get_stylesheet_directory() . '/config')) { return; }