Vite Hot Reload not working on custom Filament Views

Saving changes in a resource 'app/Filament/Resources/(file).php' files triggers auto-reload in the browser,
But saving file in 'resources/views/livewire/(file).blade.php' don't.

I'm wondering what would be required to VITE watch the files inside 'app/resources/views/livewire' to bubble up the hot reload.

vite.config.js seems to be correct (otherwise it wouldn't be working for the resource files, I assume).

\vite.config.js
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';

export default defineConfig({
    server: {
        host: '127.0.0.1',  // Add this to force IPv4 only
    },
    plugins: [
        laravel({
            input: [
                'resources/js/zebra/BrowserPrint-3.1.250.min.js',
                'resources/js/zebra/BrowserPrint-Zebra-1.1.250.min.js',
                'resources/js/zebra/BrowserPrintSetup.js',
                'resources/css/app.css', 
                'resources/js/app.js', 
                'resources/css/filament/crematorium/theme.css',
                'resources/css/filament/office/theme.css',
                'resources/css/filament/driver/theme.css',
                
            ],
            refresh: true,

        }),
    ],
});


I've tried to add @vite directive onto the .blade.php view file to no avail, any suggestions would be most welcome.
Recording_2025-12-19_111142.gif
Was this page helpful?