mirror of
https://github.com/pelican-dev/panel.git
synced 2025-09-14 23:14:46 +02:00

Co-authored-by: RMartinOscar <40749467+RMartinOscar@users.noreply.github.com> Co-authored-by: Boy132 <Boy132@users.noreply.github.com> Co-authored-by: Lance Pioch <git@lance.sh>
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(),
|
|
],
|
|
});
|