mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-20 14:58:24 +00:00
10 lines
208 B
JavaScript
10 lines
208 B
JavaScript
'use strict';
|
|
|
|
import baseConfig from './base';
|
|
|
|
let config = {
|
|
BASE_API: 'http://localhost:3333/api/v1' /// your base api for XHR
|
|
};
|
|
|
|
export default Object.freeze(Object.assign({}, baseConfig, config));
|