Initial commit

This commit is contained in:
boboko
2026-07-03 13:46:54 +00:00
commit cbad03bf8f
125 changed files with 20420 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
import tailwindcss from '@tailwindcss/vite';
export default defineConfig({
build: {
// Target browsers that support ES modules natively (Chrome 89+, Firefox 89+,
// Safari 15+, Edge 89+). Eliminates legacy polyfills flagged by PageSpeed.
target: ['es2022', 'chrome89', 'firefox89', 'safari15', 'edge89'],
},
plugins: [
laravel({
input: ['resources/css/app.css', 'resources/js/app.js'],
refresh: true,
}),
tailwindcss(),
],
server: {
host: '0.0.0.0',
port: 5173,
strictPort: true,
cors: true,
hmr: {
host: 'localhost',
},
watch: {
ignored: ['**/storage/framework/views/**'],
},
},
});