- Laravel Vite Plugin Version: 0.5.2 - Laravel Version: 9.19.0 - Node Version: 16.15.0 - NPM Version: 8.11.0 - Host operating system: Linux - Web Browser & Version: Chrome 103.0.5060.134 - Running in Sail / Docker: Docker ### Description: It seems that setting `refresh: false` doesn't disable full reloads on blade files changes ### Steps To Reproduce: this is my vite.config.js ```javascript import {defineConfig} from 'vite'; import laravel from 'laravel-vite-plugin'; export default defineConfig({ server: { host: '0.0.0.0', port: 3000, }, plugins: [ laravel({ input: [ 'resources/css/app.css', 'resources/js/app.js', ], refresh: false, }) ], }); ``` and this is the result if I change one of my blade files: https://user-images.githubusercontent.com/8792274/182189388-7cbde9b6-64f3-4cc2-9c56-e2d0ea10e841.mp4 am I missing something in the configuration?