mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-10 19:16:10 +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));
|