mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2026-05-05 04:54:53 +00:00
cf330016a3
- **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.
22 lines
460 B
JavaScript
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/**'],
|
|
},
|
|
},
|
|
});
|