-
Notifications
You must be signed in to change notification settings - Fork 164
Closed
Labels
Description
- 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
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:
Peek.2022-08-01.17-52.mp4
am I missing something in the configuration?
Reactions are currently unavailable