From 4e428cc58e0308dcc5e6e6ce74bb11e023a9267c Mon Sep 17 00:00:00 2001 From: Boban Blaskovic Date: Fri, 22 May 2026 00:46:45 +0200 Subject: [PATCH] fix(config): untrack phpunit.xml + add Vite watch exclusion for Blade cache --- .gitignore | 1 + phpunit.xml | 32 -------------------------------- vite.config.js | 3 +++ 3 files changed, 4 insertions(+), 32 deletions(-) delete mode 100644 phpunit.xml diff --git a/.gitignore b/.gitignore index 7be55e2..23ae75d 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ _ide_helper.php Homestead.json Homestead.yaml Thumbs.db +phpunit.xml diff --git a/phpunit.xml b/phpunit.xml deleted file mode 100644 index 9a3432b..0000000 --- a/phpunit.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - tests/Unit - - - tests/Feature - - - - - app - - - - - - - - - - - - - - - - diff --git a/vite.config.js b/vite.config.js index aa58671..3255137 100644 --- a/vite.config.js +++ b/vite.config.js @@ -35,6 +35,9 @@ export default defineConfig({ server: { host: '0.0.0.0', port: 5173, + watch: { + ignored: ['**/storage/framework/views/**'], + }, hmr: { host: 'app.dev.lernschiff.com', protocol: 'wss',