File size: 179 Bytes
94d5fc0
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import nconf from 'nconf';

const config = nconf
  .argv()
  .env('__')
  .file('environment', '/sandbox/config.json')
  .file('defaults', 'config.json');

export default config;