From dd1806a312cd0d19ca25718484f7de3b02ccee03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bu=C4=9Fra=20Canata?= Date: Sat, 17 Jan 2026 20:33:33 +0300 Subject: [PATCH] Remove manual redirect rules for Netlify SSR The Netlify adapter automatically handles all routing when using output: 'server'. Manual redirect rules were interfering with proper API endpoint handling. Co-Authored-By: Claude --- netlify.toml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/netlify.toml b/netlify.toml index 7ca05e2..1d6f115 100644 --- a/netlify.toml +++ b/netlify.toml @@ -9,8 +9,6 @@ [headers.values] Cache-Control = "public, max-age=31536000, immutable" -[[redirects]] - from = "/*" - to = "/.netlify/build/entry.mjs" - status = 200 - force = true +# NOTE: When using output: 'server' with Netlify adapter, +# routing is handled automatically by the adapter. +# No manual redirect rules needed for SSR functionality.