From f7171449226d95cdc91e987591cf8802507d80a4 Mon Sep 17 00:00:00 2001 From: Jan Wagner Date: Mon, 31 Aug 2026 19:45:07 +0200 Subject: [PATCH] Remove invalid trustHostHeader option (default in Next 16) --- next.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index 752d6ac..eddcd89 100644 --- a/next.config.ts +++ b/next.config.ts @@ -45,7 +45,8 @@ const config: NextConfig = { ]; }, // Traefik vertraut uns — wir akzeptieren X-Forwarded-For. - trustHostHeader: true, + // (trustHostHeader ist die Next.js-Default ab 16, wenn hinter einem + // Reverse-Proxy deployed.) }; export default config;