Skip to content

Commit f149e89

Browse files
fix: handle redirect response body (#142)
* fix: handle redirect response body * Use js * Update src/run/handlers/server.ts Co-authored-by: Eduardo Bouças <[email protected]> * Fix test --------- Co-authored-by: Eduardo Bouças <[email protected]>
1 parent 33e3947 commit f149e89

File tree

5 files changed

+27
-0
lines changed

5 files changed

+27
-0
lines changed

src/run/handlers/server.ts

+7
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,12 @@ export default async (request: Request) => {
5858
setCacheTagsHeaders(response.headers, request, tagsManifest)
5959
setVaryHeaders(response.headers, request, nextConfig)
6060

61+
// Temporary workaround for an issue where sending a response with an empty
62+
// body causes an unhandled error.
63+
// TODO: Remove once a fix has been rolled out.
64+
if (response.status > 300 && response.status < 400) {
65+
return new Response(null, response)
66+
}
67+
6168
return response
6269
}

tests/e2e/simple-app.test.ts

+8
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,11 @@ test('Serves a static image correctly', async ({ page }) => {
3232
expect(response?.status()).toBe(200)
3333
expect(response?.headers()['content-type']).toBe('image/svg+xml')
3434
})
35+
36+
test('Redirects correctly', async ({ page }) => {
37+
await page.goto(`${ctx.url}/redirect/response`)
38+
await expect(page).toHaveURL(`https://www.netlify.com/`)
39+
40+
await page.goto(`${ctx.url}/redirect`)
41+
await expect(page).toHaveURL(`https://www.netlify.com/`)
42+
})
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { NextRequest, NextResponse } from 'next/server'
2+
3+
export async function GET() {
4+
return NextResponse.redirect('https://www.netlify.com/')
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { redirect } from 'next/navigation'
2+
3+
export async function GET() {
4+
return redirect('https://www.netlify.com/')
5+
}

tests/integration/simple-app.test.ts

+2
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ test<FixtureTestContext>('Test that the simple next app is working', async (ctx)
4141
'500.html',
4242
'index',
4343
'other',
44+
'redirect',
45+
'redirect/response',
4446
])
4547

4648
// test the function call

0 commit comments

Comments
 (0)