diff --git a/src/Console/InstallsBladeStack.php b/src/Console/InstallsBladeStack.php index 17cf4b3f0..cf602d600 100644 --- a/src/Console/InstallsBladeStack.php +++ b/src/Console/InstallsBladeStack.php @@ -41,6 +41,7 @@ protected function installBladeStack() $this->removeDarkClasses((new Finder) ->in(resource_path('views')) ->name('*.blade.php') + ->notPath('livewire/welcome/navigation.blade.php') ->notName('welcome.blade.php') ); } diff --git a/src/Console/InstallsLivewireStack.php b/src/Console/InstallsLivewireStack.php index 10f3e1677..1b4a640b6 100644 --- a/src/Console/InstallsLivewireStack.php +++ b/src/Console/InstallsLivewireStack.php @@ -78,6 +78,7 @@ protected function installLivewireStack($functional = false) $this->removeDarkClasses((new Finder) ->in(resource_path('views')) ->name('*.blade.php') + ->notPath('livewire/welcome/navigation.blade.php') ->notName('welcome.blade.php') ); }