import { defineConfig } from 'vite' import laravel from 'laravel-vite-plugin' import tailwindcss from '@tailwindcss/vite' // Builds the Workbench, the Laravel app the showcase and the browser tests run in. // Applications never use this file; they import the package's CSS and JS into their own build. export default defineConfig({ plugins: [ laravel({ input: ['workbench/resources/css/app.css', 'workbench/resources/js/app.js'], publicDirectory: 'workbench/public', refresh: ['resources/views/**', 'workbench/resources/views/**'], }), tailwindcss(), ], })