mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 07:30:25 +00:00
19 lines
502 B
JavaScript
19 lines
502 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',
|
|
'resources/js/web-terminal.js',
|
|
],
|
|
refresh: [
|
|
...refreshPaths,
|
|
'app/Livewire/**',
|
|
'resources/views/**/*.blade.php',
|
|
],
|
|
}),
|
|
],
|
|
})
|