From 7c2b50220574bda9372797b06e1cd2ed12bb4f33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20F=C3=BCrhoff?= Date: Wed, 8 Jan 2025 09:24:48 +0100 Subject: [PATCH] Add support for .sass --- src/ViteManifest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ViteManifest.php b/src/ViteManifest.php index 9bb12ae..07a0575 100644 --- a/src/ViteManifest.php +++ b/src/ViteManifest.php @@ -469,6 +469,6 @@ protected function useServer(): bool private function isStylesheet($filename): bool { - return in_array(pathinfo($filename, PATHINFO_EXTENSION), ['css', 'less', 'scss']); + return in_array(pathinfo($filename, PATHINFO_EXTENSION), ['css', 'less', 'scss', 'sass']); } }