diff --git a/src/config/devTools.js b/src/config/devTools.js index ba3241c..41f61cd 100644 --- a/src/config/devTools.js +++ b/src/config/devTools.js @@ -1,6 +1,7 @@ // Dev-tools gate. Explicit opt-in via REACT_APP_DEV_TOOLS=1. // Safe default: any value other than exactly '1' = off. -// Dynamic key access so react-scripts DefinePlugin does NOT inline the value -// at build time — allows tests + runtime env changes to take effect. -const KEY = 'REACT_APP_' + 'DEV_TOOLS'; +// Dynamic key access (process.env[KEY]) so react-scripts DefinePlugin does NOT +// inline the value at build time — allows tests + runtime env changes to take +// effect. DefinePlugin only replaces static member access, never computed lookups. +const KEY = 'REACT_APP_DEV_TOOLS'; export const isDevToolsEnabled = () => process.env[KEY] === '1';