mirror of
https://github.com/pelican-dev/panel.git
synced 2025-09-08 12:48:45 +02:00
18 lines
457 B
JavaScript
18 lines
457 B
JavaScript
import { defineConfig } from 'vite';
|
|
import tailwindcss from '@tailwindcss/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: true,
|
|
}),
|
|
tailwindcss(),
|
|
],
|
|
});
|