diff --git a/.env.example b/.env.example index 478972c2..ea0665b0 100644 --- a/.env.example +++ b/.env.example @@ -51,6 +51,7 @@ PUSHER_PORT=443 PUSHER_SCHEME=https PUSHER_APP_CLUSTER=mt1 +VITE_APP_NAME="${APP_NAME}" VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}" VITE_PUSHER_HOST="${PUSHER_HOST}" VITE_PUSHER_PORT="${PUSHER_PORT}" diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php index 1fb53dce..494c0501 100644 --- a/app/Http/Kernel.php +++ b/app/Http/Kernel.php @@ -60,6 +60,7 @@ class Kernel extends HttpKernel 'can' => \Illuminate\Auth\Middleware\Authorize::class, 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class, 'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class, + 'precognitive' => \Illuminate\Foundation\Http\Middleware\HandlePrecognitiveRequests::class, 'signed' => \App\Http\Middleware\ValidateSignature::class, 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class, diff --git a/config/mail.php b/config/mail.php index 62d9240b..f32d5609 100644 --- a/config/mail.php +++ b/config/mail.php @@ -59,6 +59,7 @@ 'postmark' => [ 'transport' => 'postmark', + // 'message_stream_id' => null, // 'client' => [ // 'timeout' => 5, // ], diff --git a/package.json b/package.json index e543e0d1..0e6480f2 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ }, "devDependencies": { "axios": "^1.1.2", - "laravel-vite-plugin": "^0.7.5", + "laravel-vite-plugin": "^0.8.0", "vite": "^4.0.0" } } diff --git a/phpunit.xml b/phpunit.xml index e9f533da..f112c0c8 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -1,20 +1,20 @@ - ./tests/Unit + tests/Unit - ./tests/Feature + tests/Feature - ./app + app