Skip to content

Commit

Permalink
Update handleDataRequest flow
Browse files Browse the repository at this point in the history
  • Loading branch information
brophdawg11 committed Aug 9, 2024
1 parent aec262c commit b814483
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/remix-server-runtime/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,11 @@ export const createRequestHandler: CreateRequestHandlerFunction = (

if (isRedirectResponse(response)) {
let result: SingleFetchResult | SingleFetchResults =
getSingleFetchRedirect(response.status, response.headers);
getSingleFetchRedirect(
response.status,
response.headers,
_build.basename
);

if (request.method === "GET") {
result = {
Expand Down

0 comments on commit b814483

Please sign in to comment.