Files
einundzwanzig-app/vite.config.js
T
BT cf330016a3 📚 **Docs & 🛠️ Config:**
- **Docs:** Added new test enforcement guidelines to `.junie/guidelines.md` and `AGENTS.md` for improved code quality.
- **Config:** Updated `vite.config.js` to ignore view cache changes and ensure faster reloads under `server.watch`.
- **Dependencies:** Upgraded multiple Yarn dependencies including updates to `@emnapi`, `@shikijs`, `@tailwindcss`, and more for better performance and stability.
2026-05-03 15:21:01 +02:00

22 lines
460 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,
watch: {
ignored: ['**/storage/framework/views/**'],
},
},
});