topnotch_webshop/vite.config.js

15 lines
312 B
JavaScript
Raw Permalink Normal View History

2025-03-26 19:05:00 -04:00
import { defineConfig } from 'vite';
2025-03-25 15:02:34 -04:00
import laravel from 'laravel-vite-plugin';
export default defineConfig({
plugins: [
laravel({
2025-03-26 19:05:00 -04:00
input: [
'resources/sass/app.scss',
'resources/js/app.js',
],
refresh: true,
2025-03-25 15:02:34 -04:00
}),
],
2025-03-26 19:05:00 -04:00
});