We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bccb3c commit f61baabCopy full SHA for f61baab
app/Providers/AppServiceProvider.php
@@ -3,6 +3,7 @@
3
namespace App\Providers;
4
5
use App\Models\User;
6
+use Illuminate\Http\Client\RequestException;
7
use Illuminate\Http\Resources\Json\JsonResource;
8
use Illuminate\Support\Facades\Vite;
9
use Illuminate\Support\ServiceProvider;
@@ -19,6 +20,8 @@ class AppServiceProvider extends ServiceProvider
19
20
{
21
public function boot(): void
22
23
+ RequestException::dontTruncate();
24
+
25
JsonResource::withoutWrapping();
26
27
Vite::prefetch(concurrency: 3);
0 commit comments