From 75b85d60e7e2ef1059ffe2566c73d3fb33a005a3 Mon Sep 17 00:00:00 2001 From: Damjan Savic Date: Sun, 25 Jan 2026 06:34:46 +0100 Subject: [PATCH] auto-claude: subtask-1-2 - Add Strict-Transport-Security (HSTS) header --- next.config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/next.config.ts b/next.config.ts index 38724b8..168832a 100644 --- a/next.config.ts +++ b/next.config.ts @@ -56,6 +56,10 @@ const nextConfig: NextConfig = { "form-action 'self'", ].join('; '), }, + { + key: 'Strict-Transport-Security', + value: 'max-age=31536000; includeSubDomains; preload', + }, ], }, {