mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-27 19:35:11 +00:00
10 lines
182 B
JavaScript
10 lines
182 B
JavaScript
|
'use strict';
|
||
|
|
||
|
import baseConfig from './base';
|
||
|
|
||
|
let config = {
|
||
|
BASE_API: 'http://localhost:3333/api/v1'
|
||
|
};
|
||
|
|
||
|
export default Object.freeze(Object.assign({}, baseConfig, config));
|