PhyrePanel/web/vite.config.js

16 lines
407 B
JavaScript
Raw Permalink Normal View History

2024-04-02 20:20:37 +00:00
import { defineConfig } from 'vite'
import laravel, { refreshPaths } from 'laravel-vite-plugin'
2023-11-23 20:25:06 +00:00
export default defineConfig({
plugins: [
laravel({
input: ['resources/css/app.css', 'resources/js/app.js'],
2024-04-02 20:20:37 +00:00
refresh: [
...refreshPaths,
'app/Livewire/**',
'resources/views/**/*.blade.php',
],
2023-11-23 20:25:06 +00:00
}),
],
2024-04-02 20:20:37 +00:00
})