📚 **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.
This commit is contained in:
BT
2026-05-03 15:21:01 +02:00
parent d46c0161fe
commit cf330016a3
5 changed files with 487 additions and 485 deletions
+6 -1
View File
@@ -1,4 +1,6 @@
import {defineConfig} from 'vite';
import {
defineConfig
} from 'vite';
import laravel from 'laravel-vite-plugin';
import tailwindcss from "@tailwindcss/vite";
@@ -12,5 +14,8 @@ export default defineConfig({
],
server: {
cors: true,
watch: {
ignored: ['**/storage/framework/views/**'],
},
},
});