From e6fd32181373b16b57a6a30107b2435e4d526c26 Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Sat, 4 Oct 2025 20:10:11 +0300 Subject: [PATCH] refactor: remove FRONTEND_API_KEY and DEBOUNCE_MS from runtime configuration --- src/frontend/public/env.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/frontend/public/env.js b/src/frontend/public/env.js index 3c6d70f..1547e27 100644 --- a/src/frontend/public/env.js +++ b/src/frontend/public/env.js @@ -2,7 +2,5 @@ // DO NOT EDIT - This file is automatically generated // eslint-disable-next-line no-undef window.env = { - "BASE_PATH": "/", - "FRONTEND_API_KEY": "frontend-dev-key", - "DEBOUNCE_MS": 2000 + BASE_PATH: '/', };