remove inertia backend adapter

Remove the adapter dependency, middleware, configuration, and frontend route. Leave the backend root unclaimed so the standalone Vue application remains independent.
This commit is contained in:
Yisroel Baum 2026-07-30 23:13:45 +03:00
parent c176be3536
commit 15925b856b
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
6 changed files with 1 additions and 196 deletions

View file

@ -1,6 +1,5 @@
<?php
use App\Http\Middleware\HandleInertiaRequests;
use Illuminate\Foundation\Application;
use Illuminate\Foundation\Configuration\Exceptions;
use Illuminate\Foundation\Configuration\Middleware;
@ -15,7 +14,6 @@ return Application::configure(basePath: dirname(__DIR__))
)
->withMiddleware(function (Middleware $middleware): void {
$middleware->web(append: [
HandleInertiaRequests::class,
AddLinkHeadersForPreloadedAssets::class,
]);
})