mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
19 lines
422 B
JavaScript
19 lines
422 B
JavaScript
|
|
/* @flow */
|
||
|
|
|
||
|
|
// ../config.js accepts options via environment variables
|
||
|
|
const options = {}
|
||
|
|
|
||
|
|
if (process.env.DOTENV_CONFIG_ENCODING != null) {
|
||
|
|
options.encoding = process.env.DOTENV_CONFIG_ENCODING
|
||
|
|
}
|
||
|
|
|
||
|
|
if (process.env.DOTENV_CONFIG_PATH != null) {
|
||
|
|
options.path = process.env.DOTENV_CONFIG_PATH
|
||
|
|
}
|
||
|
|
|
||
|
|
if (process.env.DOTENV_CONFIG_DEBUG != null) {
|
||
|
|
options.debug = process.env.DOTENV_CONFIG_DEBUG
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = options
|