added laravel 12

This commit is contained in:
jon brookes 2026-01-01 16:49:06 +00:00
parent 6a97cad9f8
commit 602bdcbe17
124 changed files with 18707 additions and 0 deletions

21
vite.config.js Normal file
View file

@ -0,0 +1,21 @@
import {
defineConfig
} from 'vite';
import laravel from 'laravel-vite-plugin';
import tailwindcss from "@tailwindcss/vite";
export default defineConfig({
plugins: [
laravel({
input: ['resources/css/app.css', 'resources/js/app.js'],
refresh: true,
}),
tailwindcss(),
],
server: {
cors: true,
watch: {
ignored: ['**/storage/framework/views/**'],
},
},
});