You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
285 B
16 lines
285 B
/**
|
|
* User: liuxinyi/liu.xinyi@free-sun.com.cn
|
|
* Date: 2016/1/13
|
|
* Time: 17:51
|
|
*
|
|
*/
|
|
'use strict';
|
|
|
|
let store = null;
|
|
if(process.env.NODE_ENV == 'production'){
|
|
store = require('./store.prod').default;
|
|
}else {
|
|
store = require('./store.dev').default;
|
|
}
|
|
|
|
export default store;
|