mirror of
https://github.com/pelican-dev/panel.git
synced 2025-09-07 18:18:43 +02:00
16 lines
421 B
JavaScript
16 lines
421 B
JavaScript
import { defineConfig } from 'vite';
|
|
import laravel, { refreshPaths } from 'laravel-vite-plugin';
|
|
import { globSync } from 'glob';
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
laravel({
|
|
input: [
|
|
...globSync('resources/css/**/*.css'),
|
|
...globSync('resources/js/**/*.js'),
|
|
],
|
|
refresh: [...refreshPaths, 'app/Livewire/**'],
|
|
}),
|
|
],
|
|
});
|