We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52ecdaa commit 5f75093Copy full SHA for 5f75093
ui/packages/app/src/config.js
@@ -1,4 +1,9 @@
1
const getEnv = env => {
2
+ console.log(window.env);
3
+ console.log(env in window.env);
4
+ console.log(window.env[env]);
5
+ console.log(process.env);
6
+ console.log(process.env[env]);
7
return window.env && env in window.env ? window.env[env] : process.env[env];
8
};
9
0 commit comments