From 30f55eff6ebc22e30796e9e033536894a28b0824 Mon Sep 17 00:00:00 2001 From: Mohamed Said Date: Tue, 7 Apr 2020 17:35:38 +0200 Subject: [PATCH] exclude browserconfig.xml and *.webmanifest from asset files --- src/AssetFiles.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/AssetFiles.php b/src/AssetFiles.php index a134a386..3f17dd44 100644 --- a/src/AssetFiles.php +++ b/src/AssetFiles.php @@ -24,6 +24,8 @@ public static function get($path) ->exclude('storage') ->notName('.htaccess') ->notName('web.config') + ->notName('browserconfig.xml') + ->notName('*.webmanifest') ->notName('*.json') ->notName('*.php') ->ignoreVcs(true)