From f09b19af940d1829877e9b1635d7fe48764cf8ad Mon Sep 17 00:00:00 2001 From: martin-mfg <2026226+martin-mfg@users.noreply.github.com> Date: Wed, 8 Oct 2025 16:18:52 +0200 Subject: [PATCH] try with simpler env key in craco --- frontend/frontend/craco.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/frontend/craco.config.js b/frontend/frontend/craco.config.js index 48c235ae..e1d369d5 100644 --- a/frontend/frontend/craco.config.js +++ b/frontend/frontend/craco.config.js @@ -24,7 +24,7 @@ module.exports = { // Turn { KEY: "value" } into { "process.env.KEY": JSON.stringify("value") } const env = { - PAT_1: 'myDummyPAT', + myDummyKey: 'myDummyPAT', }; const envKeys = Object.keys(env).reduce((prev, next) => { prev[`process.env.${next}`] = JSON.stringify(env[next]);