fix(config): untrack phpunit.xml + add Vite watch exclusion for Blade cache

main
Boban Blaskovic 2026-05-22 00:46:45 +02:00
parent 7595d28613
commit 4e428cc58e
3 changed files with 4 additions and 32 deletions

1
.gitignore vendored
View File

@ -25,3 +25,4 @@ _ide_helper.php
Homestead.json
Homestead.yaml
Thumbs.db
phpunit.xml

View File

@ -1,32 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true">
<testsuites>
<testsuite name="Unit">
<directory>tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory>tests/Feature</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>app</directory>
</include>
</source>
<php>
<env name="APP_ENV" value="testing"/>
<env name="APP_DEBUG" value="true"/>
<env name="DB_CONNECTION" value="mysql"/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_STORE" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_CONNECTION" value="sync"/>
<env name="MAIL_MAILER" value="array"/>
<env name="SESSION_SECURE_COOKIE" value="false"/>
<env name="SESSION_DOMAIN" value="null"/>
<env name="ALLOW_QUICK_LOGIN" value="true"/>
</php>
</phpunit>

View File

@ -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',