From edb38f034e1c15c96dc97922a9d784143ef61d8c Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Sat, 4 Oct 2025 02:49:57 +0300 Subject: [PATCH] refactor: add comment to clarify HSTS configuration in security middleware --- src/backend/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/index.ts b/src/backend/index.ts index 232e972..d3a0084 100644 --- a/src/backend/index.ts +++ b/src/backend/index.ts @@ -34,6 +34,7 @@ app.use( frameSrc: ["'none'"], }, }, + strictTransportSecurity: false, // Disable HSTS to allow HTTP access }) );