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));
|