From 3d059e0adf29d7f53634c317e29ad4b825c5197e Mon Sep 17 00:00:00 2001 From: Leonardo Matos Date: Tue, 21 Feb 2023 14:25:59 -0300 Subject: [PATCH] Disabling prerender to try fixing not matched catch-all route on root https://github.com/withastro/astro/issues/6020 ? --- functions/ssr/src/pages/fallback.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/ssr/src/pages/fallback.astro b/functions/ssr/src/pages/fallback.astro index 8802618a..63df0b01 100644 --- a/functions/ssr/src/pages/fallback.astro +++ b/functions/ssr/src/pages/fallback.astro @@ -10,7 +10,7 @@ try { return err.astroResponse; } -export const prerender = true; +// export const prerender = true; ---