2017-04-12 00:04:27 -05:00

10 lines
194 B
JavaScript

'use strict';
import baseConfig from './base';
let config = {
appEnv: 'test' // don't remove the appEnv property here
};
export default Object.freeze(Object.assign(baseConfig, config));