mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 07:30:25 +00:00
16 lines
407 B
JavaScript
16 lines
407 B
JavaScript
|
import { defineConfig } from 'vite'
|
||
|
import laravel, { refreshPaths } from 'laravel-vite-plugin'
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [
|
||
|
laravel({
|
||
|
input: ['resources/css/app.css', 'resources/js/app.js'],
|
||
|
refresh: [
|
||
|
...refreshPaths,
|
||
|
'app/Livewire/**',
|
||
|
'resources/views/**/*.blade.php',
|
||
|
],
|
||
|
}),
|
||
|
],
|
||
|
})
|