mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-13 11:46:47 +00:00
✂️ Consolidate `defineConfig` import syntax 🎨 Replace hard‑coded zinc palette with neutral variables 🧹 Remove redundant @source imports and obsolete style rules ✨ Add Alpine.js `[x-cloak]` helper with responsive variants 🚫 Clean up unused base layer selectors and leaflet styles
17 lines
370 B
JavaScript
17 lines
370 B
JavaScript
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,
|
|
},
|
|
});
|