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 <noreply@anthropic.com>
This commit is contained in:
Buğra Canata
2026-01-17 20:33:33 +03:00
parent 41a35c2a30
commit dd1806a312
+3 -5
View File
@@ -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.