You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This adapter comes with its own middleware that prepares the response header needed to convert the current Server request to an Inertia request. To do this, you need to follow the approach where middleware response headers are kept and sent to the next middleware.
This requirement is mandatory because when the ::handle() method of the Request Handler returns a response, it must include the headers of the Inertia Middleware's response. To achieve this, you may need to utilize the Pipeline library in your request handler. For more details, refer to the Pipeline Wiki Page.