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]);