Fix 404 response leading to an infinite loop when there is no 404 page (#8136)

* fix: 404 response leads to infinite loop

* chore: changeset

---------

Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
This commit is contained in:
André Alves 2023-08-18 12:27:44 -03:00 committed by GitHub
parent 8c0a4ed106
commit 97c8760d78
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
'astro': patch
---
Fix 404 response leading to an infinite loop when there is no 404 page.

View file

@ -259,7 +259,7 @@ export async function handleRoute({
await writeWebResponse(incomingResponse, response);
}
} else {
if (result.status === 404) {
if (result.status === 404 && has404Route(manifestData)) {
const fourOhFourRoute = await matchRoute('/404', env, manifestData);
return handleRoute({
...options,
@ -380,3 +380,7 @@ function getStatus(matchedRoute?: MatchedRoute): 404 | 500 | undefined {
if (matchedRoute.route.route === '/404') return 404;
if (matchedRoute.route.route === '/500') return 500;
}
function has404Route(manifest: ManifestData): RouteData | undefined {
return manifest.routes.find((route) => route.route === '/404')
}