Tags: laravel/laravel
Tags
Ignore Laravel compiled views for Vite (#6714) * Ignore Laravel compiled views for Vite Before testing, run php artisan cache:clear to clear old compiled views. This issue only happens during local development when running npm run dev. Laravel continuously recompiles Blade into PHP inside storage/framework/views (especially after Livewire re-renders), and these files are changed by Laravel itself, not by us. Because of that, Vite thinks we modified a file and triggers a full reload—even though the change is purely internal framework logic. This makes the reload behavior unacceptable and noisy during development. Since these compiled views belong to Laravel’s backend logic and not frontend assets, Vite does not need to watch them. Ignoring storage/framework/views keeps Vite stable and prevents reloads caused by Laravel doing its own internal work. * Vite ignore rule now in one clean line
Add background driver (#6699) * Add background driver Adds settings for PR laravel/framework#57648 * Update queue.php --------- Co-authored-by: Taylor Otwell <[email protected]>
PreviousNext