Skip to content

Commit

Permalink
Test configs
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlycoconuts committed Jun 4, 2024
1 parent 52ecdaa commit 5f75093
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ui/packages/app/src/config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
const getEnv = env => {
console.log(window.env);
console.log(env in window.env);
console.log(window.env[env]);
console.log(process.env);
console.log(process.env[env]);
return window.env && env in window.env ? window.env[env] : process.env[env];
};

Expand Down

0 comments on commit 5f75093

Please sign in to comment.