diff --git a/app/static.php b/app/static.php index 81afd9e..cc41c6f 100644 --- a/app/static.php +++ b/app/static.php @@ -12,6 +12,8 @@ if (str_starts_with($file, 'styles/')) { $filePath = $customBasePath . 'custom/' . $file; } elseif (str_starts_with($file, 'fonts/')) { $filePath = $customBasePath . 'custom/' . $file; +} elseif (str_starts_with($file, 'assets/')) { + $filePath = $customBasePath . 'custom/' . $file; } elseif (str_starts_with($file, 'default-styles/')) { $filePath = $basePath . 'default/' . substr($file, 15); // Remove 'default-styles/' prefix } elseif (str_starts_with($file, 'docs-styles/')) {