mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-18 15:11:47 +00:00
10 lines
194 B
JavaScript
10 lines
194 B
JavaScript
|
'use strict';
|
||
|
|
||
|
import baseConfig from './base';
|
||
|
|
||
|
let config = {
|
||
|
appEnv: 'test' // don't remove the appEnv property here
|
||
|
};
|
||
|
|
||
|
export default Object.freeze(Object.assign(baseConfig, config));
|