Initial Laravel Portal

This commit is contained in:
2026-05-25 10:58:45 +02:00
commit 1aef762c12
56 changed files with 10769 additions and 0 deletions
Executable
+18
View File
@@ -0,0 +1,18 @@
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: {
watch: {
ignored: ['**/storage/framework/views/**'],
},
},
});