@myinterview/widget-react 1.0.37-beta-3440f1a → 1.0.37-beta-306a901
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/index.js +3 -2
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -21918,12 +21918,13 @@ const prod_config = {
|
|
|
21918
21918
|
|
|
21919
21919
|
// eslint-disable-next-line import/no-mutable-exports
|
|
21920
21920
|
const config$1 = (configEnv) => {
|
|
21921
|
+
console.log('CONFIG', configEnv);
|
|
21921
21922
|
switch (configEnv) {
|
|
21922
|
-
case 'development':
|
|
21923
|
-
case 'dev':
|
|
21924
21923
|
case 'local':
|
|
21925
21924
|
return local_config;
|
|
21926
21925
|
case 'staging':
|
|
21926
|
+
case 'development':
|
|
21927
|
+
case 'dev':
|
|
21927
21928
|
return staging_config;
|
|
21928
21929
|
default:
|
|
21929
21930
|
return prod_config;
|