9 lines
186 B
JavaScript
9 lines
186 B
JavaScript
'use strict';
|
|
|
|
if (!process.env.NODE_CONFIG_DIR) {
|
|
process.env.NODE_CONFIG_DIR = __dirname + '/../../config';
|
|
}
|
|
|
|
const config = require('config');
|
|
|
|
module.exports = config;
|